function bad($id){
	$url="/ajax.php?action=audit&type=comments&id="+$id+"&timestamp=" + new Date().getTime();
	xmlHttp.onreadystatechange = function(){
		if (xmlHttp.readyState == 4 && xmlHttp.status == 200){
			var mystring = xmlHttp.responseText;
			alert(mystring.split("|")[1]);
			if (window.ActiveXObject)
			xmlHttp = new ActiveXObject("Microsoft.XMLHttp");
			else if (window.XMLHttpRequest)
			xmlHttp = new XMLHttpRequest();
		}
	}
	xmlHttp.open("GET",$url);
	xmlHttp.send(null);
}
adinit(function(){
	document.getElementById("ad_ep_co_si").innerHTML='<iframe width="300" height="250" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="/templates/public/ad/episodes-comments~300x250.html" ></iframe >';
	document.getElementById("ad_ep_co_lo").innerHTML='<iframe width="160" height="600" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="/templates/public/ad/episodes-comments~160x600.html" ></iframe >';
})