 function  _ajax(fetch_url,post)
 {
 	
 var im = document.createElement('img');
 var _Content;
 _Content=false;
   im.className ="ajax_loader";
   im.src="/images/loading.gif";
   im.border="0";
   im.style.top=(((screen.height) /2)-150)+"px";
   im.style.left=((screen.width) /2)+"px";
    
   document.body.appendChild(im);

 	var xajax = new Ajax.Request(
					fetch_url,{
						method: 'post',
						asynchronous: false,
						contentType: 'application/x-www-form-urlencoded',
						encoding: 'iso-8859-9',
						parameters: post,
						onFailure: function(){
		im.style.display="none";
							alert('Sunucu ile iletişimde bazı sorunlar Yaşandı Lütfen tekrar deneyiniz.');
		 return false;
							
						},
						onComplete: function(xhttp){
							im.style.display="none";						
						_Content= xhttp.responseText;
						
						
						}
 	
 }
);
return _Content;
 }  