function call(id,docroot) {
var temp	= 'prod'+id;
var qty 	= document.getElementById(temp).value;
var size	= document.getElementById("size").value;
var color	= document.getElementById("color").value;
var style	= document.getElementById("style").value;

	if(document.getElementById(temp).value > 0 )
	{
		//var aurl=docroot+"/products/ajax/add_product.php?p_id="+id+"&qty="+qty+"&size="+size+"&color="+color+"&style="+style;
		var url = docroot+"index.php/product/ajax_call/add_product/";
		$.post(url, { p_id: id, qty: qty, size: size, color: color, style: style},
			function(data){
//			  alert("Product Added Successfully to your bag.");
				load_all_flash(id);
				update_header_cart(docroot);
			});
//		syconnect(aurl,"","");
	}
	else
	{
		alert("Please enter appropriate quantity.");
	}

}


function update_header_cart(docroot)
{
		var url = docroot+"index.php/product/ajax_call/update_header_cart/";
		$.ajax({
		url:url, 
	   dataType:'json', 	  
      success:   function (data)
	  {
			$("#item_count").html(data.prd_cnt+" item(s)");
			$("#item_cost").html("A$"+data.total);
	  }

});


}

function updateCart()
{
   document.getElementById("shop_cart").innerHTML=obj.msg;
}
