function getXmlHttp(){
	var xmlhttp;
	try{xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");}
	catch(e){
		try{xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");}
		catch(E){xmlhttp=false;}
	}
	if(!xmlhttp && typeof XMLHttpRequest!='undefined'){xmlhttp=new XMLHttpRequest();}
	return xmlhttp;
}

function ct(q,h){
	if(h){q=h.substr(1);}
	var ajax_div=document.getElementById('ajax');
	ajax_div.innerHTML='<b>... Завантаження ...</b>';
	var xmlhttp=getXmlHttp();
	xmlhttp.open('GET','ajax.php?q='+q+'&r='+Math.random(),true);
	xmlhttp.onreadystatechange=function(){
		if(xmlhttp.readyState==4){
			if(xmlhttp.status==200){
				ajax_div.innerHTML=xmlhttp.responseText;
				var player_a=document.getElementById('player'); if(player_a){flowplayer("player","flowplayer-3.1.5.swf",{plugins:{controls:{autoHide:"always",hideDelay:500}}});}
			}
		}
	};
	xmlhttp.send(null);
}