//ABRE UMA URL EM UMA PÁGINA NOVA
function openBlankPage(url)
{
	window.open(url, "_blank","");
}

//ABRE UMA URL EM UM IFRAME INDICADO POR local
function openIframe(url,local)
{
	if (local != "")
	{
		document.getElementById(local).src = url;
	}
}

//ABRE UMA URL NA PÁGINA CORRENTE
function openPage(url)
{
	window.location.href= url;
}

//ABRE UMA JANELA DE PESQUISA
function openFindPage(url){
	var esquerda = (window.screen.width-620)/2;
	var topo = (window.screen.height-420)/2;
	window.open(url, "_blank","left=" + esquerda + ",top=" + topo + ",width=620,height=380,resizable=no,status=no,scrollbars=no");
}

//ABRE UMA JANELA DE IMAGEM
function openImagePage(path, inputImage)
{
	var image;
	if(document.getElementById(inputImage))
		image = document.getElementById(inputImage).value;
	else image = "";
	esquerda = (window.screen.width - 620)/2;
	topo = (window.screen.height - 400)/2;
	window.open(path + image, "_blank","left=" + esquerda + ",top=" + topo + ",width=620,height=330,resizable=no,status=no,scrollbars=no");
}

function abrePopUp (pagina, nome, width, height)
{
	var x = (screen.width - width)/2;
	var y = (screen.height - height)/2;
	window.open(pagina, nome, "width=" + width + ",height=" + height +",resizable=no,status=yes,scrollbars=yes, left=" + x + ", top=" + y);
}

function openPopUp (pagina, nome, width, height)
{
	var x = (screen.width - width)/2;
	var y = (screen.height - height)/2;
	window.open(pagina, nome, "width=" + width + ",height=" + height +",resizable=no,status=yes,scrollbars=yes, left=" + x + ", top=" + y);
}