<!--
function abreJanela(theUrl)
{
  if (navigator.appName=="Netscape")
    window.open(theUrl,'','height=10,width=10,screenX=50,screenY=10,resizable');
  else
    window.open(theUrl,'','height=10,width=10,top=50,left=10,resizable');
}
//-->