// JavaScript Document
//pop window
<!--
var theURL = 'finestra.htm';
var width  = 500;
var height = 500;
var Top = 180;
var Left = 500;

function popWindow() {
newWindow = window.open(theURL,'newWindow','toolbar=no,menubar=no,resizable=no,scrollbars=yes,location=yes,status=no,width='+width+',height='+height+',top='+Top+',left='+Left);
}

//-->

var howLong = 38000;

t = null;
function closeMe(){
t = setTimeout("self.close()",howLong);
}