function checkLiveStatus(feed, planning, page){
	var xmlhttp;if (window.ActiveXObject)	{xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");}else	{xmlhttp=new XMLHttpRequest();}
	if (xmlhttp) {
		var date		= new Date();	var random		= date.getTime();
		//xmlhttp.open("GET","checkLiveStatus.php?feed="+feed+"&planning="+planning+"&hash="+random,true);
		xmlhttp.open("GET","checkLiveStatus.php?feed="+feed+"&planning="+planning,true);
		xmlhttp.onreadystatechange=function() {  
		if (xmlhttp.readyState==4){
			try{
				var response = xmlhttp.responseText;
				if (response != ""){
					if (response == "99"){
						window.location.reload();
					}else if (response != "1" && page == "1"){
						window.location.reload();
					}else if (response == "1" && page == "2"){
						window.location.reload();
					}
				}
			}
			catch (e){};
	   }
	 }
	 
	 xmlhttp.send(null)
	}
}