function openpic(pic) {
	wnd = window.open('', 'poppic','width=100 height=100');
	html = "<html><head>\n";
	html+= "<script language=\"javascript\">\n";
	html+= "var i=0;\n";
	html+= "function resize() {\n";
	html+= "	if (navigator.appName == 'Netscape') i=40;\n";
	html+= "	if (document.images[0]) window.resizeTo(document.images[0].width +30, document.images[0].height+60-i);\n";
	html+= "	self.focus();\n";
	html+= "}\n";
	html+= "<\/script>\n";
	html+= "<\/head>\n";
	html+= "<body leftmargin=\"0\" topmargin=\"0\" onload=\"resize();\">\n";
	html+= "<img src=\""+pic+"\" border=\"0\"><\/body>\n";
	html+= "<\/html>";
	wnd.document.open();
	wnd.document.write(html);
	wnd.document.close();
}


