<!--
var req=false;
function getContent(url,paramstr,fhandle){
	try{
		req = new XMLHttpRequest(); // Opera 8.0+, Firefox, Safari
	} catch (e){
		try{ // IЕ
			req = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try{
				req= new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e){ // Something went wrong
				alert("Моля използвайте някои от следните браузъри: Konqueror, IExplorer 5.0+, Mozilla 1.0+, Netscape 7.1+, Safari 1.2+, Opera 7.6+");
				return false;
			}
		}
	}
	rand = Math.floor(Math.random()*100000);
	req.onreadystatechange=fhandle;

	req.open('GET', url+'?rand=' + rand + '&' + encodeURI(paramstr), true);
	//req.setRequestHeader("Accept-Charset", "windows-1251");
	req.send(null);
}
//-->
