var xmlHttp;
function countClick(str, str2) { 
	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null) return;
	var url="ajax_calls/click_counter_call_1.php";
	url=url+"?link="+str+"&location="+str2;
	xmlHttp.open("GET",url,true); // 4-22-09 This was "GET"
	xmlHttp.send(null);
}

function GetXmlHttpObject() {
	var xmlHttp=null;
	try {
		// Firefox, Opera 8.0+, Safari
		xmlHttp=new XMLHttpRequest();
	}
	catch (e) {
		//Internet Explorer
		try {
			xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e) {
			xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
		}
	}
return xmlHttp;
}