function openPic(name, title, ww, hh) {
size='width=5,height=5,bar=0,status=no,resizable=no,scrollbars=no,menubar=no';
PicWin= open("", "pic",size);
PicWin.resizeTo(ww+9, hh+28);
PicWin.document.open();
PicWin.document.write("<html><head><title>");
PicWin.document.write(title);
PicWin.document.write("</title></head><body leftmargin=0 topmargin=0><table border=0 cellspacing=0 cellpadding=0><tr><td width=");
PicWin.document.write(ww-1);
PicWin.document.write(" height=");
PicWin.document.write(hh-1);
PicWin.document.write(" background='");
PicWin.document.write(name);
PicWin.document.write("' nowrap><a onclick='window.close()' href='#'><img src='/images/z.gif' width=");
PicWin.document.write(ww-1);
PicWin.document.write(" height=");
PicWin.document.write(hh-1);
PicWin.document.write(" alt='");
PicWin.document.write(title);
PicWin.document.write("' border=0></a></td></tr></table></body></html>");
PicWin.document.close();
PicWin.focus();
}