function formCheck(theForm) {
	var itemChecked = 0;
	var itemYes = 0;
	for(i=0;i<theForm.elements.length;i++) {
		if (theForm.elements[i].checked == true) {
			itemChecked++;
			if (theForm.elements[i].value == "Yes") {
				itemYes++;
			}
		} 
	}
	
	if (itemChecked < 5) {
		alert('Did you answer all of the questions?');
		return false;
	} else {
		if (itemYes < 5) {
			document.getElementById('message').innerHTML = 'If you answered <strong>NO<\/strong> to any of the above questions, you should think seriously about another type of business as a Patrice &amp; Associates franchise may not be the right choice.';
		} else {
			document.getElementById('message').innerHTML = 'If you answered YES to all of the above questions <a href=\"schedule-a-webinar\">click here<\/a>!';
		}
		document.getElementById('submit').value = 'Start Over';
		return true;
	}
}

function formReset(theForm) {
	document.getElementById('message').innerHTML = '';
	document.getElementById('submit').value = 'Am I Ready?';
	for(i=0;i<theForm.elements.length;i++) {
			theForm.elements[i].checked = false;
	} 
}

