function doCount()
{
  var referer = escape(top.document.referrer);
  var localurl = escape(location.href);

  // 向组件递交查询
  var xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
  if(typeof(unitid) !="undefined")
  {
    xmlhttp.Open("POST","/count/countLog.asp?unitid=" + unitid + "&stype=01&referer=" +   referer + "&localurl=" + localurl,false);
  }
  else
    xmlhttp.Open("POST","/count/countLog.asp?unitid=001&stype=01&referer=" +   referer + "&localurl=" + localurl,false);
  xmlhttp.Send();
 
  /*
  if(xmlhttp.responseText != "")
    alert("统计失败");
  else
    alert("成功");
  */
  
  xmlhttp = null;
}

