﻿// JavaScript Document
//在线统计系统

function usashopcncount(itemName){
	var xmlhttpCount;
	try{
    	xmlhttpCount= new ActiveXObject('Msxml2.XMLHTTP');
	}catch(e){
    	try{
       		xmlhttpCount= new ActiveXObject('Microsoft.XMLHTTP');
    	}catch(e){
    		try{
         		xmlhttpCount= new XMLHttpRequest();
    		}catch(e){
			}
    	}
	}
	var url = "usashopcncount.asp?act=c_Click&itemname="+encodeURIComponent(itemName);
	if (xmlhttpCount == null){
		return;
	}
	try{
		xmlhttpCount.onreadystatechange =function(){};
		xmlhttpCount.open("get",url,true);
		xmlhttpCount.setRequestHeader("If-Modified-Since","0");
		xmlhttpCount.send(null);
	}catch(e){}
	return true;
}