	
	function validateForm(intForm){
		objForm = document.forms[intForm];
		if(!objForm.quantity){
			alert("Please enter a value in the quantity field for the product you would like.")
			return;
		}
		if( isNaN(objForm.quantity.value) ){
			alert("Please enter a numerical value in the quantity field for the product you would like.")
			return;
		}
		if(objForm.quantity.value < 10){
			alert("For bulk orders, you must purchase 10 or more of a product.");
			return;
		}
		objForm.submit();
	}