// JavaScript Document
function Janela(url, name, width, height, fullscreen, modal)
{
	if (url != "")
	{
		var Left = (screen.width - width) / 2;
		var Top = (screen.height - height) / 2;	
		
		prop = "top="+Top+",left="+Left+",scrollbars=yes";

		if (fullscreen == true)
		{
			prop += ",fullscreen=yes";
		}
		
		window.open(url, name, 'width='+width+',height='+height+',toolbar=no,directories=no,status=no,menubar=no,resizable=no,'+prop);
		/*if (popup == null || popup.closed == true)
		{
			document.location.href= url;
		}*/
	}
}

function Janela2(url, name, width, height, fullscreen, modal)
{
	if (url != "")
	{
		var Left = (screen.width - width) / 2;
		var Top = (screen.height - height) / 2;	
		
		prop = "top="+Top+",left="+Left+",scrollbars=yes";

		if (fullscreen == true)
		{
			prop += ",fullscreen=yes";
		}
		
		return window.open(url, name, 'width='+width+',height='+height+',toolbar=no,directories=no,status=no,menubar=no,resizable=no,'+prop);
	}
}

function JanelaDialogo(url, name, width, height)
{
	if (url != "")
	{
		var Left = (screen.width - width) / 2;
		var Top = (screen.height - height) / 2;	
		
		var retorno = "";
		
		prop = 'dialogHeight: '+height+'px; dialogWidth: '+width+'px; center: Yes; help: No; resizable: No; status: No;';
		
		retorno = window.showModalDialog(url, name, prop);
		
		return retorno;
	}
}