// custom coded Paypal checkout code with coupon
// copyright Flux Integrated Solutions Consulting

function co()
{
	document.loc1.quantity.value = document.checkOut.quantity.value;
	document.loc2.quantity.value = document.checkOut.quantity.value;
	document.loc3.quantity.value = document.checkOut.quantity.value;
	document.loc4.quantity.value = document.checkOut.quantity.value;
	document.loc5.quantity.value = document.checkOut.quantity.value;
	document.loc6.quantity.value = document.checkOut.quantity.value;
	if (document.checkOut.quantity.value == '0')  { alert('Please enter a quantity greater than 0'); }					
	if (document.checkOut.location.value == '0')  { alert('Please choose a location'); }

	else{
		if (document.checkOut.location.value == 'loc1') { 
			if ((document.checkOut.coupcode.value.length == 0) || (document.checkOut.coupcode.value == null)){
				document.loc1.submit();
			} else if (document.checkOut.coupcode.value == 'PROMOJH1419'){
				document.loc1.discount_amount.value = 8.04*(document.checkOut.quantity.value);
	        		alert ("Coupon accepted. Discount will be applied at checkout.");
				document.loc1.submit(); 
			} else { alert ("Coupon code invalid"); }}

		if (document.checkOut.location.value == 'loc2') { 
			if ((document.checkOut.coupcode.value.length == 0) || (document.checkOut.coupcode.value == null)){
				document.loc2.submit();
			} else if (document.checkOut.coupcode.value == 'PROMOJH1419'){
				document.loc2.discount_amount.value = 8.04*(document.checkOut.quantity.value);
	        		alert ("Coupon accepted. Discount will be applied at checkout.");
				document.loc2.submit(); 
			} else { alert ("Coupon code invalid"); }}

		if (document.checkOut.location.value == 'loc3') { 
			if ((document.checkOut.coupcode.value.length == 0) || (document.checkOut.coupcode.value == null)){
				document.loc3.submit();
			} else if (document.checkOut.coupcode.value == 'PROMOJH1419'){
				document.loc3.discount_amount.value = 8.04*(document.checkOut.quantity.value);
	        		alert ("Coupon accepted. Discount will be applied at checkout.");
				document.loc3.submit(); 
			} else { alert ("Coupon code invalid"); }}

		if (document.checkOut.location.value == 'loc4') { 
			if ((document.checkOut.coupcode.value.length == 0) || (document.checkOut.coupcode.value == null)){
				document.loc4.submit();
			} else if (document.checkOut.coupcode.value == 'PROMOJH1419'){
				document.loc4.discount_amount.value = 8.04*(document.checkOut.quantity.value);
	        		alert ("Coupon accepted. Discount will be applied at checkout.");
				document.loc4.submit(); 
			} else { alert ("Coupon code invalid"); }}

		if (document.checkOut.location.value == 'loc5') { 
			if ((document.checkOut.coupcode.value.length == 0) || (document.checkOut.coupcode.value == null)){
				document.loc5.submit();
			} else if (document.checkOut.coupcode.value == 'PROMOJH1419'){
				document.loc5.discount_amount.value = 8.04*(document.checkOut.quantity.value);
	        		alert ("Coupon accepted. Discount will be applied at checkout.");
				document.loc5.submit(); 
			} else { alert ("Coupon code invalid"); }}
			
				if (document.checkOut.location.value == 'loc5') { 
			
		if ((document.checkOut.coupcode.value.length == 0) || (document.checkOut.coupcode.value == null)){
				document.loc6.submit();
			} else if (document.checkOut.coupcode.value == 'PROMOJH1419'){
				document.loc6.discount_amount.value = 8.04*(document.checkOut.quantity.value);
	        		alert ("Coupon accepted. Discount will be applied at checkout.");
				document.loc6.submit(); 
			} else { alert ("Coupon code invalid"); }}
	}
}

