function viewCartItems(count){
	var action = new Cookie();
	action.setCookie("scCount", ""+count);
}

function showCartItems(){
	var count = getCartItemsCount();
	var ctrl = document.getElementById("shoppingcartitems");
	if (ctrl){
		ctrl.value=count;
	}
}

function getCartItemsCount(){
	var action = new Cookie();
	var count = action.getCookie("scCount");
	if (count){
		return parseInt(count);
	} else {
		return 0;
	}
}
