
<!-- Janela Normal -->
function NewWindow (width, height, myname, url)
{
  var left, top;

  if (screen.width < width)
    left = 0;
  else
    left = (screen.width  - width) / 2;

  if (screen.height < height)
    top = 0;
  else
    top = (screen.height - height) / 4;

  if ( navigator.appName == "Netscape" )
  {  var w = window.open (url, myname, "height="+height+",width="+width+ 
    ",screenX=" + left + ",screenY=" + top + ",scrollbars=yes,status=no,toolbar=0,menubar=no,location=0,directories=0,resizable=no");}
  else
  {  var w = window.open (url, myname, "height="+height+",width="+width+ 
    ",left=" + left + ",top=" + top + ",scrollbars=yes,status=no,toolbar=0,menubar=no,location=0,directories=0,resizable=no");}

  if (w)
   w.focus ();

}


<!-- Janela Servicos -->
function NewWindow_servicos (width, height, myname, url)
{
  var left, top;

  if (screen.width < width)
    left = 0;
  else
    left = (screen.width  - width) / 2;

  if (screen.height < height)
    top = 0;
  else
    top = (screen.height - height) / 4;

  if ( navigator.appName == "Netscape" )
  {  var w = window.open (url, myname, "height="+height+",width="+width+ 
    ",screenX=" + left + ",screenY=" + top + ",scrollbars=yes,status=yes,toolbar=0,menubar=no,location=0,directories=0,resizable=yes");}
  else
  {  var w = window.open (url, myname, "height="+height+",width="+width+ 
    ",left=" + left + ",top=" + top + ",scrollbars=yes,status=yes,toolbar=0,menubar=no,location=0,directories=0,resizable=yes");}

  if (w)
   w.focus ();
   
}

<!-- Janela Normal com scrollbar -->
function NewWindow2 (width, height, myname, url)
{
  var left, top;

  if (screen.width < width)
    left = 0;
  else
    left = (screen.width  - width) / 2;

  if (screen.height < height)
    top = 0;
  else
    top = (screen.height - height) / 4;

  if ( navigator.appName == "Netscape" )
  {  var w = window.open (url, myname, "height="+height+",width="+width+ 
    ",screenX=" + left + ",screenY=" + top + ",scrollbars=no,status=no,toolbar=0,menubar=no,location=0,directories=0,resizable=no");}
  else
  {  var w = window.open (url, myname, "height="+height+",width="+width+ 
    ",left=" + left + ",top=" + top + ",scrollbars=no,status=no,toolbar=0,menubar=no,location=0,directories=0,resizable=no");}

  if (w)
   w.focus ();
   
}




<!-- Exibir Janela -->
function showhide( targetId ){
if (document.getElementById){
target = document.getElementById( targetId );
 if (target.style.display == "none"){
  target.style.display = "block";
 } else {
  target.style.display = "none";
  
 }
}
}

<!-- Postar Form do Webmail (Marcelo) -->
function PreencheForm(username,dominio,password,pop3)
{
	document.loginPage.username.value = username;
	document.loginPage.pop3hostexternal.value = dominio;
	document.loginPage.password.value = password;
	document.loginPage.MailServer.value = pop3;
	
	document.loginPage.submit();
}

