
function storeProduct(id)
{
	
  if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
	xmlhttp=new XMLHttpRequest();
  }
  else
  {// code for IE6, IE5
	xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }

  xmlhttp.onreadystatechange=function()
  {
	 
    if ( (xmlhttp.readyState==4) && (xmlhttp.status==200))
    {
		if(xmlhttp.responseText == "-1")
		{
	   		alert("Bu ürün sepetinizde bulunmaktadır.");
		}else
		{
			alert("Ürün sepetinize eklenmistir.Saygılarımızla - Taymak Makine");
       		document.getElementById("productCount").innerHTML=xmlhttp.responseText + " Ürününüz var.";
			
		}
    }
		
  }
  
xmlhttp.open("GET","storeProduct.php?id=" + id,true);
xmlhttp.send();
}


function cleanProducts()
{
	
  var done = confirm("Sepetteki ürünleri silmek istiyor musunuz?");	
  if(!done)
  	return;	
	
  if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
	xmlhttp=new XMLHttpRequest();
  }
  else
  {// code for IE6, IE5
	xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }

  xmlhttp.onreadystatechange=function()
  {
	 
    if ( (xmlhttp.readyState==4) && (xmlhttp.status==200))
    {
		alert("Sepetinizdeki ürünler temizlenmiştir.Saygılarımızla - Taymak Makine");
        document.getElementById("productCount").innerHTML=xmlhttp.responseText + " Ürününüz var.";
    }
		
  }
  
xmlhttp.open("GET","storeProduct.php?id=0" ,true);
xmlhttp.send();
}
