
<!-- 
//redirect()

function redirect () {
    setTimeout("getInfo()",60000);
}
 
function getInfo() {
	Conferma=window.open('/confirm.html', 'Confirm', 'toolbars=0, scrollbars=0, location=0, statusbars=0, menubars=0, resizable=0, width=200, height=120, left = 437, top = 334');
	redirect()
}

function stampa(url)
{
	window.print(url) ;
}

function PopIt(msg, descr){  
	// Set up Page Colors & Table  
	var s1 ="<html>" +
			"<title>Information!</title>" +
			"<link rel='stylesheet' href='/eng/css/general.css'>" +    
			"<body onBlur='self.focus()' bgcolor='f0f8ff'>" +
				"<table border='0' width='100%' style='height:100%'>" +
					"<tr>" +        
						"<td width='90%' height='90' valign='top' align='left' colspan='2'>"
							    
	var s2 = 				'<h2>'+descr+'</h2>'   
	
	var s3 =    		"</td>" +
					"</tr>" +
					"<tr>"+    
						"<td valign='bottom' align='right'>"+    
							"<form><input type='button' value='Close' onClick='self.close()'></form>" +
						"</td>" +
					"</tr>" +
				"</table>" +
			"</body>" +
			"</html>" 
	
	popup = window.open("","popDialog","height=200,width=400,scrollbars=no")  
	popup.document.write(s1+s2+msg+s3)  
	popup.document.close()
}

function popHelp(){  
	alert ('pippo');
	PopIt('Help', 'Descrizione aiuto  '  +                 
	'.')
}

function popitup(url, alt, larg)
{

var PopUp = '';
	  /* if (PopUp.location && PopUp.closed)
	   {
			   PopUp.location.href = url;
	   }
	   else
	   {	*/	
			PopUp=window.open(url,'name','height=' + alt + ',width=' + larg + ',scrollbars=yes,resizable=yes,dependent,screenX=10,screenY=10');
			//PopUp=window.open(url,'name','height=' + alt + ',width=' + larg + ',scrollbars=yes,dependent');
			/*if (PopUp.opener) {
				PopUp.opener.focus()
				PopUp.opener = self;
			}*/
	   /*}
	   if (window.focus) {PopUp.focus()}*/
}


// -->
