// JavaScript Document
function ShowImage(img, orient){
  if (orient == "l") 
  {size = "width=520, height=400";}
  else
  {size = "width=400, height=520";}
  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';
  }
  }

