// JavaScript Document
function ShowImage(img, wsize, hsize){
  size = "width=" + wsize + ", " + "height=" + hsize;
  par = size + ", menubar=no, directories=no, toolbar=no, location=no, status=no, scrollbars=no, resizable=yes, left=100, top=100";
  window.open(img,"win"+new Date().getTime(),par)
  }

function MenuHi(id) {
  key='menu'+id;
  identity=document.getElementById(key);
  if (identity != null) {
    identity.className='active';
  }
  }

