function addtocartlist(psno, price, discount, pprice, size) {
	color = '';
	$.ajax({
		type	: "POST",
		url		: "xadmin/ajax.php",
		async	: false,
		data	: "filter=addtocart&psno="+psno+"&price="+price+"&discount="+discount+"&pprice="+pprice+"&size="+size+"&color="+color+"&qqty=1",
		success	: function(html) {
			//alert(html);
			//window.location.href = "addtocart.php";
			//divaddtocartcount
		}
	});
	
	$.ajax({
		type	: "POST",
		url		: "xadmin/ajax.php",
		async	: false,
		data	: "filter=productincartcount",
		success	: function(html) { 
			$("#divbasket").html(html);
			//alert("Basket Updated.");
		}
	});
}

