// Batscript  ver.200010418

function imageview (imagepath,w,h,wtitle) {
	var wname =  "img" + ((new Date().getSeconds() * 31) + new Date().getDate());
	ww=(w*1)+5;	hh=(h*1)+5;
	var wo = window.open(imagepath, wname , "directories=no,menubar=no,resizable=no,top=120,left=50,width=" + ( ww ) + ",height=" + ( hh ) , false);
	wo.document.write('<HEAD><script language="javascript"> function closeme() { self.close(); wo = null ; }<');
	wo.document.write("/script>");
	wo.document.write('<TITLE>' + wtitle + '</TITLE></HEAD>');
	wo.document.write('<body>');
	wo.document.write('<div style="position: absolute; left:0px; top:0px;">');
	wo.document.write('<a href="javascript:closeme();">');
	wo.document.write('<img src="' + imagepath + '" width="' + w + '" height="' + h + '" border="0" alt="Chiudi">');
	wo.document.write('</a>');
	wo.document.write('</div>');
	wo.document.write('</body>');
}