// JavaScript Document
function show_(elmnt)
{
	document.getElementById(elmnt).style.visibility="visible"

}
function hide_(elmnt)
{
	document.getElementById(elmnt).style.visibility="hidden"
}

t  =	'';
function pager(url,divx) {
	if(!divx){
		divx='icerik';
	}
	document.getElementById(divx).innerHTML=t
		if(window.XMLHttpRequest){
			a = new XMLHttpRequest();
		}
		if(window.ActiveXObject) {
		a = new ActiveXObject("Msxml2.XMLHTTP");
		}
		a.onreadystatechange = function () {
			if(a.readyState == 4 && a.status == 200) {
				var t = document.getElementById(divx);
				t.innerHTML = a.responseText;
			}
		}
		a.open('GET', 'includer.php?p='+url, true);
		a.send(null);	
}
function url(){
	var		x		=		document.getElementById("durum").value
	if(x!=0){
		location.href="?durum="+x
	}
}
function sxc(){
	h = window.screen.availHeight;
	h=h-170;
	document.getElementById('content').height = h;
}

