/* Ajax */
function ajax()
{
	var IS_IE = document.all && window.ActiveXObject &&  navigator.userAgent.toLowerCase().indexOf("msie") > -1 ;   
	var  IS_GECKO = document.implementation && document.implementation.createDocument  && window.XMLHttpRequest && true;    
	if (IS_GECKO)
	{
		http = new XMLHttpRequest();
	}
	else if(IS_IE)
	{
		http= new ActiveXObject("Microsoft.XMLHTTP");
	}
}

/* İhaleyi kutuya ekle */
function kutuekle(id)
{
	ajax();
	
	http.open("get", "ihaleler/kutuekle/"+id);
	http.onreadystatechange =function()
	{
		if(http.readyState== 4)
		{
			document.getElementById('kutu-'+id).innerHTML='<a href="javascript:void(0)" onclick="javascript:kutucikar(\''+id+'\')"><img src="images/ihale/k-cikar.png" width="20" height="20" border="0" /></a>';
		}
	}
	http.send(null);

}

/* İhaleyi kutudan çıkart */
function kutucikar(id)
{
	ajax();
	
	http.open("get", "ihaleler/kutucikar/"+id);
	http.onreadystatechange =function()
	{
		if(http.readyState== 4)
		{
			document.getElementById('kutu-'+id).innerHTML='<a href="javascript:void(0)" onclick="javascript:kutuekle(\''+id+'\')"><img src="images/ihale/k-ekle.png" width="20" height="20" border="0" /></a>';
		}
	}
	http.send(null);

}

/* Kutu Uyarısı */
function kutuuyar()
{
	alert('İhale Kutusu özelliğini kullanabilmeniz için üye olmanız gerekmektedir.');
}