<!--
function enlargeImage(sfilename){
	htmlHeader = "<html><head><title>Image Viewer</title><link rel=stylesheet href=\"/style1.css\" type=\"text/css\"></head><body bgcolor=\"#FFFFFF\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">";
	htmlBody = "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"5\"><tr><td bgcolor=\"#333399\" class=\"bold11yellow\"><a href=\"#\" onclick=\"window.close();\" class=\"bold11yellow\">Image Viewer (click to close)</a></td></tr>";
	htmlBody = htmlBody + "<tr><td align=\"center\"><a href=\"#\" onClick=\"window.close();\"><image src=\"images/" + sfilename + "\" border=2></a><br><br>&nbsp;</td></tr></table>";
	htmlFooter = "</body></html>";

	winIV = window.open('','','scrollbars=yes,resizable=yes,width=680,height=500');
	winIV.document.write (htmlHeader + htmlBody + htmlFooter);
	winIV.document.close;
	winIV.focus;
}
-->