function hlt(obj){obj.style.background="black";obj.style.color="#febe30";}
function blr(obj){obj.style.background="";obj.style.color="black";}

function disabletext(e){
return false
}

function reEnable(){
return true
}

//if the browser is IE4+
document.onselectstart=new Function ("return false");

//if the browser is NS6
if (window.sidebar){
//document.onmousedown=disabletext
//document.onmouseup=reEnable
}

function ajaxit(requrl,reqquery,targ){
 
	var http=null;
	var content;
	var loading='<div style="background:url(img/loading.gif) no-repeat center center; width:100%; height:100%;"></div>';
	

	if (window.XMLHttpRequest){http=new XMLHttpRequest();}
	if (window.ActiveXObject){http=new ActiveXObject("Microsoft.XMLHTTP");}
	if (http==null){alert("Ajax Desteklenmiyor!");return;}

	var url=requrl
	url=url+"?"+reqquery
	url=url+"&reqid="+Math.random()

	http.onreadystatechange=state
	http.open("GET",url,true)
	http.send(null)

	//var st=targ;
	//var cvb=document.getElementById(targ)

	function state(){

			if (http.readyState==4 || http.readyState=="complete"){

				if(1==1){
				var cvb=document.getElementById('oylama')
				cvb.innerHTML=http.responseText;}

			}else{

				if(1==1){
				var cvb=document.getElementById('oylama')
				cvb.innerHTML=http.responseText;}

			}
	}

}