<!--
  function showImage(name) {
    var inc_y = 75;
    var inc_x = 10;
    params = "top=20, left=20,width=600, height=500, Status=no, toolbar=no, menubar=no, location=no, directories=no, scrollbars=no";
    popupWin = window.open("","popupWin",params);
    popupWin.focus();
    popupWin.document.open();
    popupWin.document.write("<html><head><title></title></head>");
    popupWin.document.write("<sc"+"ript language = JavaScript>");
    popupWin.document.write("function closeWindow(){");
    popupWin.document.write("parent.window.close() };");
    popupWin.document.write("</sc"+"ript>");
    popupWin.document.write("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><a href=''><img src='"+name+"' border='0' name='cha1' onClick='closeWindow()' alt=''  onload='window.resizeTo(window.document.images[0].width+"+inc_x+",window.document.images[0].height+"+inc_y+")'></a></body></html>");
    popupWin.document.close();
  }
  -->
