function checkvinyl() {
		 		 
		 if (document.form1.quantity.value>1000) {
		 	alert ("Orders for over 1000 binders qualifies you for special pricing not available on our website. \n \n                                     Please call us at (440) 238-3303.");
		 return false
		 }
		 if (document.form1.quantity.value<25) {
		 	alert ("Minimum order quantity is 25 !");
		 return false
		 }

		 if (document.form1.capacity.value=="1/2 Inch" && document.form1.typemetal(1).checked) {
		 	alert ("Straight D Rings are not available in 1/2 inch capacity");
		 return false
		 }
		 if (document.form1.capacity.value=="3/4 Inch" && document.form1.typemetal(1).checked) {
		 	alert ("Straight D Rings are not available in 3/4 inch capacity");
		 return false
		 }
		 if (document.form1.capacity.value=="1/2 Inch" && document.form1.typemetal(2).checked) {
		 	alert ("Angle D Rings are not available in 1/2 inch capacity");
		 return false
		 }
		 if (document.form1.capacity.value=="3/4 Inch" && document.form1.typemetal(2).checked) {
		 	alert ("Angle D Rings are not available in 3/4 inch capacity");
		 return false
		 }
	}
	
function checkpoly() {
		 
		 if (document.form1.quantity.value>1000) {
		 	alert ("For quantities greater then 1000 please contact us for a custom quote");
		 return false
		 }
		 if (document.form1.quantity.value<50) {
		 	alert ("Minimum order quantity is 50 !");
		 return false
		 }
		 
		 if (document.form1.capacity.value=="1/2 Inch .023 Gauge" && document.form1.typemetal(1).checked) {
		 	alert ("Straight D Rings are not available in 1/2 inch capacity");
		 return false
		 }
		 if (document.form1.capacity.value=="3/4 Inch .023 Gauge" && document.form1.typemetal(1).checked) {
		 	alert ("Straight D Rings are not available in 3/4 inch capacity");
		 return false
		 }
		 if (document.form1.capacity.value=="1/2 Inch .023 Gauge" && document.form1.typemetal(2).checked) {
		 	alert ("Angle D Rings are not available in 1/2 inch capacity");
		 return false
		 }
		 if (document.form1.capacity.value=="3/4 Inch .023 Gauge" && document.form1.typemetal(2).checked) {
		 	alert ("Angle D Rings are not available in 3/4 inch capacity");
		 return false
		 }
	}	
	
function email() {

		 if (document.form1.emailaddress.value=="") {
		 	alert ("E-Mail address is a required field");
		 return false
		 }
		 if (document.form1.quantity.value<25) {
		 	alert ("Minimum order quantity is 25 !");
		 return false
		 }
	}
  	
function checkinputform() {
		 checkvinyl();
		 email();
		 return false
		 }
	
 
