

function deleteItem(record_id){
	location.href = "cart_item_delete.asp?id=" + record_id
}//end function

function doAction(action){	//shopping cart action
	if(action == "delete"){
		document.cart_form.cart_action.value = "delete";
		document.cart_form.submit();
	}//end if
	else if(action == "update"){
		document.cart_form.cart_action.value = "update";
		document.cart_form.submit();
	}//end else if

}//end function