<!--
  MyWindow=null; 
function OpenWindow(theURL,winName) {
  if(MyWindow != null)
 {
  if(!MyWindow.closed) 
  {
   if(MyWindow.name != winName) 
   {
    MyWindow.close();     
    MyWindow = window.open(theURL,winName,'status=yes,scrollbars=no,width=460,height=400');

   } else 
   {
    MyWindow.close();     
    MyWindow = window.open(theURL,winName,'status=yes,scrollbars=no,width=460,height=400');
    MyWindow.focus(); 
   }
  } else 
  {   
   MyWindow = window.open(theURL,winName,'alwaysRaised=yes,status=yes,scrollbars=no,width=460,height=400');
  }
 }
 else  
 { 
  MyWindow = window.open(theURL,winName,'alwaysRaised=yes,status=yes,scrollbars=no,width=460,height=400');
 }
}


function ResetWindow(imagem) 
{          
// self.moveTo(2,2); 
 self.resizeTo(imagem.width+50,imagem.height+150); 
}

function Reseta() 
{          
// self.moveTo(2,2); 
 self.resizeTo(460, 420); 
}
-->
