function addProduct(product_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)
	    {
	    document.getElementById("add_btn").innerHTML=xmlhttp.responseText;
	    }
	   else
	    {
	    document.getElementById("add_btn").innerHTML="Adding...";
	    }	   	   
	  }
	xmlhttp.open("GET","enquiry-a.php?product_id="+ product_id + "&t="+ Math.random() ,true);
	xmlhttp.send();
}

function delProduct(product_id)
{
	if (window.XMLHttpRequest)
	  {// code for IE7+, Firefox, Chrome, Opera, Safari
	  xmlhttp2=new XMLHttpRequest();
	  }
	else
	  {// code for IE6, IE5
	  xmlhttp2=new ActiveXObject("Microsoft.XMLHttp");
	  }
	xmlhttp2.onreadystatechange=function()
	  {
	  if (xmlhttp2.readyState==4 && xmlhttp2.status==200)
	    {
	    document.getElementById("add_btn").innerHTML=xmlhttp2.responseText;
	    }
	   else
	    {
	    document.getElementById("add_btn").innerHTML="Removing...";
	    }	   	   
	  }
	xmlhttp2.open("GET","enquiry-r.php?product_id="+ product_id + "&t="+ Math.random() ,true);
	xmlhttp2.send();
}
