function percent($id,$value){
	$url="/ajax.php?action=percent&type=reviews&id="+$id+"&value="+$value+"&timestamp=" + new Date().getTime();
	xmlHttp.onreadystatechange = function(){
		if (xmlHttp.readyState == 4 && xmlHttp.status == 200){
			var mystring = xmlHttp.responseText.split("|");
			if(mystring[0]==1){
				document.getElementById($value+'_'+$id).innerHTML=mystring[1];
			}else alert(mystring[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_re_si").innerHTML='<iframe width="300" height="250" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="/templates/public/ad/episodes-reviews~300x250.html" ></iframe >';
	document.getElementById("ad_ep_re_lo").innerHTML='<iframe width="160" height="600" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="/templates/public/ad/episodes-reviews~160x600.html" ></iframe >';
})