function popupBi(pag){		x = 400;		y = 266;		xscreen = screen.width;		yscreen = screen.height;		pag = "ristorante400/" + pag;		newwinEtoile=window.open('', '', 'width=' + x +',height= ' + y +',scrollbars=no,resizable=no,titlebar=no');		newwinEtoile.document.write("<html><head><title>Copapan Pub</title></head><body bgcolor=\"#000\" style=\"margin:0; \"><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"><tr><td width=\"100px\"></td>");		newwinEtoile.document.write("<td align=\"center\"><img src=\"" + pag + ".jpg\"></td>");		newwinEtoile.document.write("<td width=\"100px\" valign=\"top\" align=\"right\"></td></tr></table></body></html>");		newwinEtoile.moveTo(xscreen/2-x/2,yscreen/2-y/2);}