$(document).ready(function() 
		{  								   
					$('#cart_prod').dialog({ autoOpen: false,
				   	width: 500,
					height: 400, 
				   	buttons: { "Cancel": function() { $(this).dialog("close");},  
							   "Add to Cart": function() { addItem_cart();$(this).dialog("close");}  
							}
					});
				
		});

function addCart(id, name, price)
{
	document.getElementById('frm_cart_prod').src = "http://www.habco.biz/lib/view_cartItem.php?id=" + id;
	document.getElementById('hid_cartItem').value = id;
	document.getElementById('hid_cartPrice').value = price;
	document.getElementById('hid_cartName').value = name;
	$('#cart_prod').dialog("open");
}

function addItem_cart()
{
	var id = document.getElementById('hid_cartItem').value;
	var quantity = document.getElementById('prod_quantity').value;
	var price = document.getElementById('hid_cartPrice').value;
	var name = document.getElementById('hid_cartName').value;
	name=name.replace(/ /g,"|");
	name=name.replace("&","*");
	$.ajax({ url: 'http://www.habco.biz/lib/addToCart.php?quantity='+ quantity +'&id=' + id +'&price=' + price +'&name=' + name,
				cache: false,
				success: function(msg) 
						{ 	
							alert("Item added to the cart");
					 	}
				 });
	
}
