function maliciousBlog(ABlogId){
	if (window.confirm("Πατήστε [ΟΚ] για να δηλώσετε στους webmasters του www.capitalblogs.gr ότι το συγκεκριμένο blog περιέχει κακόβουλο υλικό.")) {
		try 
		{
			raj = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch (t) 
		{
			alert("! ");
		}
		var newurl = "ajMaliciousBlog.asp?id=" + ABlogId.toString() + "&rnd=" + Math.random();
		raj.onreadystatechange = readNewRate;
		raj.open("GET", newurl, true); 
		raj.setRequestHeader('Cache-Control', 'no-cache');
		raj.send(null);
	}

	function readNewRate(){
		if ((raj.readyState == 4)&&(raj.status == 200)) {
			var sResp = raj.responseText;
			alert(sResp);
		}
	}

}
