<!--//
/* Autor: Humberto Zappe Loy 
   Setor: divisão 7 - PROCERGS */
function nWindow(address,windowName,features){
   var openWindow = window.open(address,windowName,features);
   if(!openWindow.closed){
      openWindow.focus(); 
   }
}
//-->