// JavaScript Document

function deleteItem(id){
		window.location = "cart.php?raction=delete&id=" + id;
	}


function updateItem(id){

		var theForm = document.forms['cart'];
		var fieldName = "quantity";
		var theField = fieldName + id;
		var theQuantity = theForm[theField].value;
		window.location = "cart.php?raction=update&id=" + id + "&quantity=" + theQuantity;
			
}


function checkForm(theForm){
alert("called");
	if (theForm.ShipFirstName.value=""){
		return false;	
	}
	if (document.theForm.ShipLastName.value=""){
		return false;	
	}
	if (theForm.ShipEmail.value=""){
		return false;	
	}
	if (theForm.ShipPhone.value=""){
		return false;	
	}
	if (theForm.ShipAddress.value=""){
		return false;	
	}
	if (theForm.ShipCity.value=""){
		return false;	
	}
	if (theForm.ShipStateSelect.value=""){
				if (theForm.ShipState.value=""){
					return false;	
				}
	}
	
	if (theForm.ShipZip.value=""){
		return false;	
	}
	
	if (theForm.ShipCountry.value=""){
		return false;	
	}
	
	return true;
}

function changeShipping(txt){
	
}

