
	function DeleteCart(question,addr) {
	var is_ok = window.confirm('Are you sure you want to delete all the items in your cart?')
		if (is_ok) {
		 location.href='http://www.hotleatherdreams.com/shopper.php?action=deleteCart';
		}
	}


  function validate(){

		if (document.orderForm.x_amount.value > 300){ alert( "Large orders require prior approval. Please contact HotLeatherDreams first. We apologize for the inconvenience." );
		 }else if (document.orderForm.x_amount.value < 50){ alert( "Due to the Free Shipping, we only accept orders over 50 Dollars U.S. We apologize for the inconvenience." );
		 }else if (!document.orderForm.AgreePolicy.checked || !document.orderForm.AgreeNoShip.checked)     { alert("Please review our return and shipping policies, then check the box above if you agree.");
		 }else if (document.orderForm.x_first_name.value.length < 1){ alert("Please enter your first name.");
		 }else if (document.orderForm.x_last_name.value.length < 2){ alert("Please enter your last name.");
		 }else if (document.orderForm.x_address.value.length < 7){ alert("Please enter your billing address.");
		 }else if (document.orderForm.x_city.value.length < 2)    { alert("Please enter your city or town.");
		 }else if (document.orderForm.x_state.value.length < 2)   { alert("Please enter your state abbreviation.");
		 }else if (document.orderForm.x_zip.value.length < 5)     { alert("Please enter your zip code.");
		 }else if (document.orderForm.x_phone.value.length < 10)   { alert("Please enter your telephone number, including area code.");
		 }else if (document.orderForm.x_email.value.indexOf("@")==-1 || document.orderForm.x_email.value.indexOf(".")==-1){ alert("Please enter a valid email address.");
		}else{ document.orderForm.submit();}
  }

  function SymError() { return true; }
  // window.onerror = SymError;

