function novajanela(name,path,toolbar,location,status,scroll,resize,width,height) {

	var caminho = path;

	name = window.open(caminho,'janela','toolbar=' + toolbar + ',location=' + location + ',status=' + status + ',scrollbars=' + scroll + ',resizable=' + resize + ',Width=' + width + ',Height=' + height);
	self.janela = name;

}