function PopIt(label, msg){  
	var s1 = "<html><TITLE>ZOOM</TITLE><head>"
	var jav= "<script language='JavaScript'> function zoom2() { var browser = navigator.appName; if (browser == 'Microsoft Internet Explorer'){ var the_width = document.the_img.width + 12; var the_height = document.the_img.height + 31; } else if (browser == 'Netscape'){var the_width = document.the_img.width+40;	var the_height = document.the_img.height+40; } window.resizeTo(the_width,the_height); window.focus();} </script>" 
	var ss= "</head><BODY onload='zoom2()' ; onBlur='self.focus()' ; leftmargin='0' topmargin='0'>"       
	var s2 = "<a href='#' OnClick='window.close();'><img src='"+label+msg+"' border='0' name='the_img' align='center' alt='Click! Per chiudere'></a>"   
	var s3 = "</BODY></html>"   
	popup = window.open("","popDialog","scrollbars=no")  
	popup.document.write(s1+jav+ss+s2+s3)  
	popup.document.close()
}

