function open_pic(imageurl,picid,description,width,height)
	{
         newWindow=window.open('',picid,'width=' + width + ', height=' + height + ', menubar=0,' +
				  'scrollbars=0,locationbar=0,directories=0,' +
                                  'resizable=1,statusbar=0,toolbar=0,xscreen=150,yscreen=150,top=150,left=150') 
	 newWindow.document.write ('<HTML><HEAD><TITLE>' + description + ' - Click on image to close window</TITLE></HEAD>')
	 newWindow.document.write ('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" BGCOLOR=white>')
	 newWindow.document.write ('<table width="100%", height="100%" cellpadding="0" cellspacing="0"><tr><td align="center" valign="middle">')
	 newWindow.document.write ('<a href="#"><IMG SRC="' + imageurl + '" onClick=window.close() border=0 alt="Image">');
	 newWindow.document.write ('</tr></td></table>')
	 newWindow.document.write ('</P></BODY></HTML>');
}