function openWin(imsrc, ww, wh) {
ww=ww+50; wh=wh+50;
w1=window.open("","w1","width="+ww+",height="+wh+",status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes");
w1.document.open();
w1.document.write("<html><head><title>Large Image<\/title><\/head>");
w1.document.write("<body bgcolor='#FFFFFF' text='#000000' leftmargin=2 topmargin=10><div align=center>");
w1.document.write("<a href=javascript:close();><img name=theimg src=" + imsrc + " border=0 alt=\"Click to Close\" title=\"Click to Close\"></a><br>");
w1.document.write("<a href=\"javascript:window.close();\">close window<\/a><\/div><\/body><\/html>");
w1.document.focus();
};