document.onmouseup=send_LinkCount;
function send_LinkCount(str) 
  {
	var evt=arguments[0] || window.event;
	if (typeof(str)!="number")
	{
		var Mx=evt.x?evt.x:evt.pageX;
		var My=evt.y?evt.y:evt.pageY;
		//var Mx=evt.clientX
		if (document.all){
			if (evt.srcElement.id=="FlashAD" && Mx>190 && Mx<805 && My>2 && My<224){var str=2;}
		    else {return;}		
		} //说明IE支持
		else {
			if (evt.target.tagName=="EMBED" && Mx>329 && Mx<937 && My>123 && My<342){var str=2;}
		    else {return;}	
		} //firfox支持
	}
	http_Link = false;
	
	if(window.XMLHttpRequest) 
	{ 
		http_Link = new XMLHttpRequest();
		if (http_Link.overrideMimeType) 
		{
			http_Link.overrideMimeType("text/xml");
		}
	}
	else if (window.ActiveXObject) 
	{ 
		try 
		{
			http_Link = new ActiveXObject("Msxml2.XMLHTTP");
		} 
		catch (e) 
		{
			try 
			{
				http_Link = new ActiveXObject("Microsoft.XMLHTTP");
			} 
			catch (e) 
			{}
		}
	}
	
	if (!http_Link) {return;}
    //http_Pricerequest.onreadystatechange = obj;
	http_Link.open("GET", "/ajax/LinkCount.cfm?LinkSortID=" + str, true);
	http_Link.send(null);
}