function openPic(imageName,w,h,alt)
{	
	l=(screen.width)/2-(w/2);
	t=(screen.height)/2-(h/2);
	newWindow = window.open("","newWindow","width="+w+",height="+h+",left="+l+",top="+t);
	newWindow.document.open();
	newWindow.document.write('<html><head><title>'+alt+". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ."+'</title></head><META HTTP-EQUIV="imagetoolbar" CONTENT="no"><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img src=pics/quadro2/'+imageName+'.jpg width='+w+' height='+h+' alt="'+alt+'">'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
