// JavaScript Document
function add_wishlist(_iProductId)
{
	if (_iProductId == 0)
	{
		alert('You should login to add product in your wishlist');
	}
	else
	{
		var randomnumber=Math.floor(Math.random()*110);	
		var url = "process_wishlist.php?randomnumber="+randomnumber+"&pid="+_iProductId+"&action=add";
		alert(url);
		xmlHttp=GetXmlHttpObject(add_wishlist_reply) 
		xmlHttp.open("GET", url , true) 
		xmlHttp.send(null) 
	}
}

function add_wishlist_reply() 
{ 
	alert(xmlHttp.readyState);
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") 
   { 	
   		alert(xmlHttp.responseText);
		//document.getElementById('hidereply_'+divid).innerHTML=xmlHttp.responseText 
   } 
} 

function add_card_user(_iProductId)
{
	if (_iProductId == 0)
	{
		alert('You should login to add product in your wishlist');
	}
	else
	{
		var randomnumber=Math.floor(Math.random()*110);	
		var url = "process_cart_user.php?randomnumber="+randomnumber+"&pid="+_iProductId+"&action=add";
		//alert(url);
		xmlHttp=GetXmlHttpObject(add_wishlist_reply) 
		xmlHttp.open("GET", url , true) 
		xmlHttp.send(null) 
	}
}

function add_wishlist_reply() 
{ 
	//alert(xmlHttp.readyState);
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") 
   { 	
   		window.location="http://www.ibazaarindia.com/shopping_cart_user.php";

		//document.getElementById('hidereply_'+divid).innerHTML=xmlHttp.responseText 
   } 
} 


