
var ajaxObjects = new Array();
	
function UpdateCart(ornament_id, quantity, action) 
{
		
	//alert('http://www.figurines-ornaments.com/update-cart.asp?action='+action+'&ornament_id='+ornament_id+'&quantity='+quantity+'&lID='+logid )
	var ajaxIndex = ajaxObjects.length;
	ajaxObjects[ajaxIndex] = new sack();
	
	ajaxObjects[ajaxIndex].requestFile ='http://www.figurines-ornaments.com/update-cart.asp?action='+action+'&ornament_id='+ornament_id+'&quantity='+quantity;
	
	
	ajaxObjects[ajaxIndex].onCompletion = function()
											{ Ajaxresult(ajaxIndex); 
											};			
	ajaxObjects[ajaxIndex].runAJAX();
	

}
function Ajaxresult(ajaxIndex)
{
	var productItems = ajaxObjects[ajaxIndex].response;	
	//document.getElementById('dataEntryBox').style.display = 'none';
	//document.getElementById('hideBackground').style.display = 'none';
	//document.getElementById('tag_id').value = '';
	//document.getElementById('tag_description').value = '';
	//productItems = productItems.replace(/2/g,'');
	document.getElementById('cartcontent').innerHTML = productItems;
	//initContent();
}
