
function winPop(u,w,h)
	{
	 if (w==null) {w=550;}
	 if (h==null) {h=650;}
	 
	 var lp = (screen.width) ? (screen.width-w)/2 : 0;
	 var tp = (screen.height) ? (screen.height-h)/2 : 0;
	 var w = window.open(u,"pop","width="+w+",height="+h+",scrollbars=1,resizable=1,top="+tp+",left="+lp+"");
	 w.focus();
	}
	
function wPop(u,n,p)
	{
	 var w = window.open(u,n,p);
	 w.focus();
	}
	
function TavsiyeEt(s,i,a)
	{
	 var w=470;
	 var h=420;
	 
	 var lp = (screen.width) ? (screen.width-w)/2 : 0;
	 var tp = (screen.height) ? (screen.height-h)/2 : 0;
	 var w = window.open('TavsiyeEt.asp?sayfa='+s+'&i='+i+'&adres='+escape(a),"t","width="+w+",height="+h+",scrollbars=1,resizable=0,top="+tp+",left="+lp+"");
	 w.focus();
	}
function uzmanCVpop(g)
	{
		if(g.toString().length==36)
		{
			var w=800;
			var h=560;
			
			var lp = (screen.width) ? (screen.width-w)/2 : 0;
			var tp = (screen.height) ? (screen.height-h)/2 : 0;
			var w = window.open('UzmanHakkinda.asp?i='+g,"t","width="+w+",height="+h+",scrollbars=1,resizable=0,top="+tp+",left="+lp+"");
			w.focus();
		}
	}
function yazarPop(g)
	{
		if(g.toString().length==36)
		{
			var w=800;
			var h=560;
			
			var lp = (screen.width) ? (screen.width-w)/2 : 0;
			var tp = (screen.height) ? (screen.height-h)/2 : 0;
			var w = window.open('YazarHakkinda.asp?i='+g,"t","width="+w+",height="+h+",scrollbars=1,resizable=0,top="+tp+",left="+lp+"");
			w.focus();
		}
	}

function numbersonly(e){
	var unicode=e.charCode? e.charCode : e.keyCode
	if (unicode!=8){
		if (unicode<48||unicode>57) {return false;}
	}
}