<!--
function validate() {

// Understand
var uFName=document.fLukeSupport.uFName.value;
var uLName=document.fLukeSupport.uLName.value;
if ((document.fLukeSupport.Understand.checked) && ((uFName.length==0) || (uLName.length==0))){
	alert('Since you selected \"Yes"\, please enter your full name.')
	if (uFName.length==0){
		document.fLukeSupport.uFName.focus()
		return false;
	}
	if (uLName.length==0){
		document.fLukeSupport.uLName.focus()
	}
	return false;
}

// Consider
var cFName=document.fLukeSupport.cFName.value;
var cLName=document.fLukeSupport.cLName.value;
if ((document.fLukeSupport.Consider.checked) && ((cFName.length==0) || (cLName.length==0))){
	alert('Since you selected \"Yes"\, please enter your full name.')
	if (cFName.length==0){
		document.fLukeSupport.cFName.focus()
		return false;
	}
	if (cLName.length==0){
		document.fLukeSupport.cLName.focus()
	}
	return false;
}
// Check to see if a checkbox is checked before submitting
var Understand=document.fLukeSupport.Understand.checked;
var Consider=document.fLukeSupport.Consider.checked;
if ((Understand==false) && (Consider==false)){
	alert('You must check \"Yes"\ in at least one of the \nlevels of support for Luke before proceeding.')
	return false;
}

return true;
}
//-->