



function addToCart(thisForm) {

if (thisForm.os0.value == "") {
        alert("Please choose a size.");
        return;
}
if (thisForm.os1.value == "") {
        alert("Please choose a color.");
        return;
}


thisForm.submit();
}

function viewCart() {
	 document.getElementById("viewCartForm").submit();
}




