function checkout_cart() {
  if(document.getElementById('pickup').checked == true || document.getElementById('noship').checked == true || document.getElementById('bcab').checked == true || document.getElementById('us').checked == true || document.getElementById('can').checked == true) {
    window.location = "https://www.grimonut.com/checkout.php";
  } else {
    alert('Must select a Shipping Method, and Update Cart');
  }
}

function doCheckout() {
  var Index = document.getElementById('payment').selectedIndex;
  if(document.getElementById('name').value == "" || document.getElementById('address').value == "" || document.getElementById('city').value == "" || document.getElementById('provstate').value == "" || document.getElementById('zipcode').value == "" || document.getElementById('country').value == "" || document.getElementById('phone').value == "" || document.getElementById('email').value == "" || document.getElementById('payment').options[Index].text == "") {
    alert("All Contact information fields are required\nFax is not Required.");
  } else {
    if(Index == "1" || Index == "2" || Index == "3") {
      if(document.getElementById('creditcard').value == "" || document.getElementById('expire').value == "" || document.getElementById('cardname').value == "") {
        alert("All Credit Card information is required.");
      } else {
        //document.forms("checkout_form").submit();
		document.forms[0].submit();
      }
    } else {
      //document.forms("checkout_form").submit();
		document.forms[0].submit();
    }
  }
}

function validateCheckoutForm() {
  if(document.getElementById('name').value == "" || document.getElementById('address').value == "" || document.getElementById('city').value == "" || document.getElementById('provstate').value == "" || document.getElementById('zipcode').value == "" || document.getElementById('country').value == "" || document.getElementById('phone').value == "" || document.getElementById('email').value == "") {
    alert("All Contact information fields are required\nFax is not Required.");
  }
  else {
	document.forms[0].submit();  
  }
}

function validatePaymentForm() {
  var Index = document.getElementById('payment').selectedIndex;
  document.forms[0].action="processorder.php";
  document.forms[0].target="_self";
  if(document.getElementById('payment').options[Index].text == "") {
    alert("Please select payment method.");
  } else {
    if(Index == "1" || Index == "2" || Index == "3") {
      if(document.getElementById('creditcard').value == "" || document.getElementById('expire').value == "" || document.getElementById('cardname').value == "") {
        alert("All Credit Card information is required.");
      } else {
        //document.forms("checkout_form").submit();
		document.forms[0].submit();
      }
    } else {
      //document.forms("checkout_form").submit();
		document.forms[0].submit();
    }
  }
}
//window.location = "https://www.grimonut.com/checkout.php";

function openPrintWindow()
{
	window.open ("", "_payment","location=0,status=0,scrollbars=1,width=500,height=400"); 	
	document.forms[0].action="print_order.php";
  	document.forms[0].target="_payment";
	document.forms[0].submit();
}