var Img=new Image();

function popup( name )
{


 Img.src="img/"+name;


 W=Img.width; H=Img.height;

 ptop=Math.round((parseInt(document.body.clientHeight)-parseInt(H))/2);

 pleft=Math.round((parseInt(document.body.clientWidth)-parseInt(W))/2)

//window.open("127.0.0.1","test");

New = window.open("","Popup",'width='+W+',height='+H+',status=no,scrollbars=no,resizable=no,toolbar=no,left='+pleft+',top='+ptop);


 New.document.writeln('<html><body style="padding:0px; spacing:0px;">');
 New.document.writeln('<head><title>Plm Servizi elettronici snc</title></head>');
 New.document.writeln('<div onclick="self.close();" style="text-align: center; cursor:hand; position: absolute; top:0; left:0;">');
 New.document.writeln('<img src="'+Img.src+'" alt="Click to close"> </div>');
 New.document.writeln('</body></html>');

 New.focus();

}
