
	function submitAddCart(uid, qty) {
		var poststr = "puid=" + encodeURI( uid) + "&qty=" + encodeURI( qty );
		createAjaxPostRequest("/cart.ajax.php", poststr, "updateShoppingCartContent");  
	}

	function updateCartWidgets() {
		var poststr = "gquickcart=" + encodeURI('1');
		createAjaxPostRequest("/cart.ajax.php", poststr, "updateShoppingCartWidgets");  
	}
	
	function updateShoppingCartContent() {
      if (http_post_request.readyState == 4) {
         if (http_post_request.status == 200) {
            result = http_post_request.responseText;
				if (parseInt(result) == 1) {
					updateCartWidgets();
					return;
				} else {
					return;
				}
         } else {
            
         }
      }		
	}
	
	function updateShoppingCartWidgets() {
      if (http_post_request.readyState == 4) {
         if (http_post_request.status == 200) {
            result = http_post_request.responseText;
			$('gquickcart').innerHTML = result;
         } else {
            
         }
      }		
	}	

