/* payment.js */

// used in payment.php to validate form before submitting to PayPal

function validateForm() {
	if (document.payment.os1.value == "") {
		// field blank so display error message
		document.getElementById('invoice_error').style.display = "block";
		return false;
	}
	return true;
}
