
// Esta funcao joga uma nova janela no canto da tela...
	function janelaCanto(x,w,h) {
		var popup=window.open(x,'janelaCanto','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width='+w+',height='+h+',top=0,left=0')
	}


// Esta funcao joga uma nova janela no canto da tela e mostra tela de carregando...
	function janelaCantoCarregando(x,w,h)
	{
		var popup=window.open('','janelaCantoCarregando','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width='+w+',height='+h+',top=0,left=0')
		d=popup.document;
		d.write('<title>Carregando...</title>\n');
		d.write('<font size="2"><b>Carregando...</b></font>\n');
		d.write('<meta http-equiv=refresh content=1;URL='+x+'>\n');
		d.location.reload();
	}


// Esta funcao joga a nova janela no centro da tela...
	function janelaCentro(x,w,h) {
		var l = ( (window.screen.width  - w) / 2 );
		var t = ( (window.screen.height - h) / 2 );
		var popup=window.open(x,'janelaCentro','leftmargin=0,topmargin=0,marginheight=0,marginwidth=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,top='+t+',left='+l+',screenX='+l+',screenY='+t+',height='+h+',width='+w+'');
	}


// Esta funcao joga a nova janela no centro da tela...
	function janelaCentroWebMail(x,w,h) {
		var l = ( (window.screen.width  - w) / 2 );
		var t = ( (window.screen.height - h) / 2 );
		var popup=window.open(x,'janelaCentroWebMail','leftmargin=0,topmargin=0,marginheight=0,marginwidth=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,top='+t+',left='+l+',screenX='+l+',screenY='+t+',height='+h+',width='+w+'');
	}


// Esta funcao joga a nova janela no centro da tela...
	function janelaCentroRestrito(x,w,h) {
		var l = ( (window.screen.width  - w) / 2 );
		var t = ( (window.screen.height - h) / 2 );
		var popup=window.open(x,'janelaCentroRestrito','leftmargin=0,topmargin=0,marginheight=0,marginwidth=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,top='+t+',left='+l+',screenX='+l+',screenY='+t+',height='+h+',width='+w+'');
	}

// Esta funcao joga a nova janela no centro da tela...
	function janelaCentroFotos(x,w,h) {
		var l = ( (window.screen.width  - w) / 2 );
		var t = ( (window.screen.height - h) / 2 );
		var popup=window.open(x,'janelaCentroFotos','leftmargin=0,topmargin=0,marginheight=0,marginwidth=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,top='+t+',left='+l+',screenX='+l+',screenY='+t+',height='+h+',width='+w+'');
	}


