function ASend(FUrl){
	var xmlhttp=null;
	xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	if(xmlhttp) {
	    xmlhttp.open('GET',FUrl,false);
	    xmlhttp.send(null);
	    return xmlhttp.responseText;
	}
}
function CheckClicks(A_Name){
	Return_Text=ASend('NoClick.asp?Name='+A_Name);
	if(Return_Text=="Ok"){
		return 'Ok';
	}
	else{
		return 'NoOk';
	}
}