function PopIt(label, msg, x, y, testo)
	{   
	
	var s1 = "<html><head><title>.:. foto // pics .:.</title><link rel=stylesheet href=style/style.css type=text/css></head><body bgcolor=#abbba1 leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>";
	var s2 = "<table border=0 cellpadding=0 cellspacing=0><tr><td>" + label + "</td><td width=23 valign=bottom bgcolor=#D6DED1><img src=images/pop_photo_02.gif width=23 height=360></td><td width=23 valign=bottom bgcolor=#C4D0BD><img src=images/pop_photo_03.gif width=23 height=360></td></tr>";
	var s3 = "<tr><td height=60 align=right><table border=0 cellspacing=0 cellpadding=0><tr><td align=right height=60 class=txt>" + testo + "</td><td width=10 valign=top align=right></td><td width=1 valign=top align=right bgcolor=#333333></td></tr></table></td><td width=23 height=60 align=center valign=middle>&nbsp;</td><td width=23 height=60 align=center>&nbsp;</td></tr></table></body></html>" ;
	y = eval(y) + 60;
	x = eval(x) + 46;
	var cAttrib = "width=" + x + ",height=" + y + ",scrollbars=no";
	
	// alert(cAttrib);
	
	popup = window.open("","popDialog",cAttrib);
	
	// popup = window.open("","popDialog","resizable=no,scrollbars=no");
	
	popup.document.write(s1+s2+msg+s3);
	popup.document.close();
	
	}
	
function PopHelp(cNameIMG,nBase,nAltez,descrizione)
	{ 
	
	PopIt('<img src="' + cNameIMG + '" width="' + nBase +'" height="' + nAltez + '">', '',nBase,nAltez,descrizione);
	return;
	
	};
