// JavaScript Document
var newWindow
function localpopup(nomefile)
{
 if (!newWindow || newWindow.closed)
 { 
  newWindow=window.open(nomefile,"","toolbar=no,menubar=no,statusbar=no,resizable=no,scrollbars=no,top=100px,left=80px,height=240px,width=300px")
  newWindow.focus()
 }
  else { if (newWindow.location.href.indexOf(nomefile)>-1)
	     {newWindow.focus()}
		 else {newWindow.location.href=nomefile
		       newWindow.focus()
			   }
       }
}