function checkCheckBoxes(formField) 
{
	var result = true;	
	
	if (formField.checked == false) 
	{
		alert ('Please read and accept the Terms of Service!');
		result = false;
	} 
	
	return result;
}




function validateForm(theForm)
{
	//check if they checked the checkbox
	if (!checkCheckBoxes(theForm.Disclaimer))
		return false;	
	return true;
}