// JavaScript Document
// Copyright (c) 2008 Vanden Corporation. All Rights Reserved.

function formValAnnual()
{
	if(document.annualForm.termsAnnual.checked==false)
	{
		alert("Please indicate that you agree to the Terms and Conditions ");
		return false;
	}
	return true;
}

function formValMonthly()
{
	if(document.monthlyForm.termsMonthly.checked==false)
	{
		alert("Please indicate that you agree to the Terms and Conditions ");
		return false;
	}
	return true;
}
