function zoomImg(sImg,nW,nH) {
	nW += 0;
	nH += 0;
 consoleRef=window.open('','myconsole',
  'width='+nW+',height='+nH+''
   +',menubar=0'
   +',toolbar=0'
   +',status=0'
   +',scrollbars=0'
   +',resizable=0')
 consoleRef.resizeTo(nW,nH);
 consoleRef.document.writeln(
  '<html><head><title>Immagine</title></head>'
   +'<body bgcolor=white style="margin:0px" onLoad="self.focus()">'
   +'<a href="#" onClick="window.close();"><img src="'+sImg+'" hspace="0" vspace="0" border="0"'
   +' alt="clic per chiudere"></a></body></html>'
 )
 try {
	consoleRef.document.close()
	}
	catch(er) {}
}

