
function popup(obj) {
	var ns = (navigator.appName=="Netscape")?true:false;
	src=obj.src.replace("thumb","");
	OpenWindow=window.open("", "_blank", "toolbar=no,width=640,height=480,scrollbars=0,resizable=no,menubar=no");
	OpenWindow.document.write("<html>\n<head>\n<TITLE>Popup</TITLE>\n</head>\n");
	OpenWindow.document.write("<BODY style='margin: 0 0 0 0;cursor: hand;'>\n");
	OpenWindow.document.write("<img style='margin: 0 0 0 0;cursor: hand;' onclick='window.close();' border='0' onload='resize();' name='pic' src='"+src+"'>\n");
	OpenWindow.document.write("<script language='javascript'>\n");
	OpenWindow.document.write("function resize(){\n");
	if(!ns) OpenWindow.document.write("var x=document.body.clientWidth; var y=document.body.clientHeight;\n");
	if( ns) OpenWindow.document.write("var x=window.innerWidth; var y=window.innerHeight;\n");
	OpenWindow.document.write("window.resizeBy(document.pic.width - x, document.pic.height - y);\n");
	if( ns) OpenWindow.document.write("window.resizeBy(30, 30);\n");
	if( ns) OpenWindow.document.write("window.resizeBy(-30, -30);\n");
	OpenWindow.document.write("}\n ");
	OpenWindow.document.write("</script>\n");
	OpenWindow.document.write("</BODY>\n");
	OpenWindow.document.write("</HTML>\n");//<a style='margin: 0 0 0 0;' target='_blank' href='""'></a>


}