/*	Esempio da richiamare nel link alla pop-up:
javascript:Apri('pop.htm','menubar=no,status=no,scrollbars=no,toolbar=no')	*/

function InUscita(){

if (document.fin!=null && !document.fin.closed)

	document.fin.close();

}


function Apri(filehtm,caratteristiche,w,h) {
var larghezza=600;
var altezza=400;
if (w) larghezza=w;
if (h) altezza=h;
var fin;
var left=(screen.width - parseInt(larghezza)) / 2;
var top=(screen.height - parseInt(altezza)) / 2;
if (document.fin!=null && !document.fin.closed)
	document.fin.close();
if (navigator.appName!="Netscape")
	while (document.fin!=null && !document.fin.closed);
document.fin=window.open(filehtm, 'f', caratteristiche+',top='+top+',left='+left+',width='+larghezza+',height='+altezza+',toolbar=0');
};


window.onunload=InUscita;