function adClick(adID,domainID,domainname,ip) {
	try {
    	xmlhttp = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");
	} catch (e) {
	    // browser doesn't support ajax. handle however you want
	}
	/*xmlhttp.onreadystatechange = function() {
		if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
		//nada
		}
	}*/
	xmlhttp.open("GET",'/adclick.cfm?a='+adID+'&d='+domainID+'&dn='+domainname+'&ip='+ip+'&random='+Math.random(),true);
	xmlhttp.send(null);
}