

var continueCheckout = function() {
  if ($('#cctolerances').length) {
    if (!$('#cctolerances').attr('checked')) {
      alert("Please accept the custom cut tolerances by checking the box.");
      return false;
    }
  }
  
  
  if ($('#promoCode').val() != '') {
    $('#promoCodeEntered').val('true'); 
  }
  
  document.form1.elements['OPTION'].value='CART_CHECKOUT_TO_SHIPPING';
  document.form1.submit();
}


var showPromo = function(){
	$('#offerfield').show();
	$('#offerfield input[type=text]').focus();
}