var time_start = new Date();
  var clock_start = time_start.getTime();
  var dl_ok=false;
  function init ()
  {
if(ap_name=="Netscape" && ap_ver>=3.0)dl_ok=true; return true;
  }
  function get_time_spent ()
  { 
   var time_now = new Date();
   alert((time_now.getTime()+"-----" +clock_start));
   return((time_now.getTime() - clock_start)/1000);
  } 
 
为什么time_now.getTime()和clock_start的值不相等