// JavaScript Document

	
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


var popup="";

function apriPOPUP(url,width,height,alt) { 
	 if (popup!="")
	 {
	 popup.close();
	 } 
	var centX=screen.availWidth/2-width/2;
	var centY=screen.availHeight/2-height/2;
	popup=window.open(url,"popup","resizable=no,scrollbars=no,height="+height+",width="+width+",location=no,menubar=no,screenX=0,screenY=0,status=no,toolbar=no,top="+centY+",left="+centX);
	  popup.document.write('<html>\n<head>\n<title>'+alt+'</title>\n</head>\n<body style="margin=0; padding=0" bgcolor="#FFFFFF" text="#000000" link="#000000" vlink="#000000" alink="#000000" onload="preloadImages()">\n<a href="javascript:close()"><img style="margin=0; padding=0; border:none" src="'+url+'" alt="Disegno: '+alt+'\r\nClicca per chiudere"></a><br>\n</body>\n</html>\n');
	  popup.focus();
}
