function openpopup(link,w,h){

xpos=Math.round(screen.width/2-(w/2))
ypos=Math.round(screen.height/2-(h/2))

//alert(xpos + ' ' + ypos)

winpops=window.open(link,"",'width=' + (w+20) + ',height=' + (h+29) + ',scrollbars=no,left=' + xpos + ',top=' + ypos)
//winpops.document.bgColor="#0000CE"
winpops.document.write('<HEAD>\n<TITLE>' + link + ' &copy; VANDINI.IT</TITLE>\n</HEAD>\n')
winpops.document.write('<HTML>\n<BODY BGCOLOR="#0000CE">\n<CENTER>\n<A HREF="javascript:window.close()">\n<IMG SRC=' + link + ' BORDER="2" ALT="Clicca sull\' immagine per chiudere" STYLE="border-color:#F0C600; "cursor: hand;"></A>\n</CENTER>\n</BODY>\n</HTML>\n');
winpops.document.close()
}


