<!--
  // open a new window
  function openit(page, width, height){
  url = "http://www.gandh.com/" + page;
  width=parseInt(width);
  height=parseInt(height);  
  winda = 
  window.open(url,"newone","scrollbars,toolbar=no,location=no,directories=no,status=no,menubar=yes,resizable=no,width=" + width + ",height=" + height);
  winda.focus();
  }  
  
//-->

