function NavTo(cmb)
{
  //var index = cmb.selectedIndex;
  //self.location = cmb.options[index].value;
  self.location = cmb.value;
};
  


function PageData(pageDate)
{
  var dateObj = new Date(pageDate);
  return (
  "Copyright 1997 ~ " + (dateObj.getFullYear()) + "<BR>" +
  "Last Modified at " +  
  (dateObj.getHours()) + ":" +
  (dateObj.getMinutes()) + "  on " +
  (dateObj.getDate()) + "/" +  
  (dateObj.getMonth() + 1) + "/" + 
  (dateObj.getFullYear())
  )
}

