/* validate the link send form */
function validateLinkRequest(oForm) {
	var bValid = true;

	//check for security code
	if (oForm.code.value.length < 4) {
		alert('Please enter the security code');
		return false;
	}

	//check email
	if (oForm.address.value == '') {
		bValid = false;
	}

	//return correctly
	if (bValid == false) {
		alert('Please fill out all required fields *');
		return false;
	}
}

function validateCheckoutContinue(oForm) {

	if (oForm.registerAgree.checked == false) {
		alert('You must state that you agree to the terms and conditions to purchase.');
		return false;
	} else {
		var bValid = true;

		//check normal form
		if (oForm.registerName.value == '' || oForm.registerAddress1.value == '' || oForm.registerTown.value == '' || oForm.registerEmail.value == '') {
			bValid = false;
		}

		//return correctly
		if (bValid == false) {
			alert('Please fill out all required fields *');
			return false;
		}
	}
}

