function ViewImage(itemdesc,itemid) { 
	var win;

	win = window.open("","imageviewer","width=510,height=425,menubar=no,toolbar=no,scrollbars=no");
	win.document.open();
	win.document.write("<html><head><title>"+itemdesc+"</title>");
	win.document.write("</head><body bgcolor=#ffffff leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0 marginheight=0 marginwidth=0>");
	win.document.write("<table border=0 cellspacing=0 cellpadding=0 width=100%>");
	win.document.write("<tr><td valign=top align=center><font face=arial size=2>");
	win.document.write("<center><img src='art/"+itemid+".jpg' vspace=5 hspace=5></center><P>"+itemdesc+"");
	win.document.write("</font></td></tr></table>></body></html>");
	win.document.close();
}
