function popit(arg) {
	var img = new Image();
	img.src = arg;
temp=window.open("","image","height="+img.height+",width="+img.width+",top=250,left=350,toolbar=no,statusbar=no,scrollbars=no,resizable=yes");
temp.document.write("<HTML><HEAD><TITLE></TITLE></HEAD><BODY leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><table width=100% height=100% cellpadding=0 cellspacing=0 border=0>");
temp.document.write("<tr valign=top><td align=center><a href=\"#\" onclick=\"window.close()\"><img src="+arg+" border=0></a></td></tr>");
temp.document.write("</table></BODY></HTML>");
temp.document.close();
}
