function showpic(id){		
	var obj = window.open('','Image','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width='+(screen.width?screen.width:800)+',height='+(screen.height?screen.height:600)+',top='+0+',left='+0);
	if (obj.resizeTo) obj.resizeTo((screen.width?screen.width:800),(screen.height?screen.height:800));
	obj.document.open();
	obj.document.write('<html><head><title></title><meta http-equiv="imagetoolbar" content="no"></head><body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0" bgcolor="#000000">'+
		'<table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%"><tr><td align="center" valign="middle"><img src="/pics/'+id+'" alt="" border="0"></td></tr></table></body></html>');
	obj.document.close();
	if(obj.window.focus){obj.window.focus();}
}
