 function getObjectByName(objectName){
  if (document.getElementById)
   return document.getElementById(objectName)
  else if(document.all)
   return document.all (objectName)
  else if(document.layers)
   return document.layers[objectName];
  else
  return null;
 }
 
 function linka_switch(lid,bg_col,stat_text){
  linka=getObjectByName(lid);
  linka.style.backgroundColor =bg_col;
  window.status=stat_text;
  return true;
 }
  
 function DoPrinting(){
  if (!window.print){
   alert("You must have Netscape 4.x or MSIE5,\n in order to use this print button!")
   return
  }
  window.print();
 }

 var showme
 function detail(where) {
  showme=window.open(where,'IENN','menubar=yes,toolbars=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width=400,height=400');
  showme.focus();
 }
