function AbreJanela() {
  var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
    myHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth  = document.body.clientWidth;
    myHeight = document.body.clientHeight;	
  }
  //window.alert( 'Width = ' + myWidth );
  //window.alert( 'Height = ' + myHeight );
  
  myWidth  = myWidth	+ 10; //largura
  myHeight = myHeight + 110; //altura

  window.open("chamados/login.php", "nova_janela" ,"menubar=no,scrollbars=no,resizable=yes,top=0,left=0,right=0,status=no,height="+myHeight+",width="+myWidth+"");
   
}

function JanelaFull()
{
	if (screen.width>0)	lWidth=screen.width; else lWidth=800;
	if (screen.height>0) iHeight=screen.height; else iHeight=600;
 remote = window.open('https://mundo.uricer.edu.br/siescii/login.php','Siesc',"height="+iHeight+",width="+lWidth+",toolbar=0,menubar=0,titlebar=0,location=0,directories=0,resizable=1,scrollbars=0,status=0,left=0,top=0");
}

function JanelaFull_SIG()
{
	if (screen.width>0)	lWidth=screen.width; else lWidth=800;
	if (screen.height>0) iHeight=screen.height; else iHeight=600;
 remote = window.open('https://sig.uricer.edu.br/sig/login.php','SIG',"height="+iHeight+",width="+lWidth+",toolbar=0,menubar=0,titlebar=0,location=0,directories=0,resizable=1,scrollbars=1,status=0,left=0,top=0");
}


function ApagaLayer(){
		Propaganda.style.display = 'none';
}
