<!--

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		welcome_over = newImage("images/welcome-over.jpg");
		course_train_over = newImage("images/course_train-over.jpg");
		meet_instruct_over = newImage("images/meet_instruct-over.jpg");
		meet_champs_over = newImage("images/meet_champs-over.jpg");
		others_say_over = newImage("images/others_say-over.jpg");
		links_over = newImage("images/links-over.gif");
		contact_us_over = newImage("images/contact_us-over.gif");
		enroll_over = newImage("images/enroll-over.gif");
		preloadFlag = true;
	}
}


function Validate(theForm) {

if (theForm.fname.value == "") {

	alert("Please enter your First Name");

	theForm.fname.focus();

	return (false);

	}

if (theForm.lname.value == "") {

	alert("Please enter your Last Name");

	theForm.lname.focus();

	return (false);

	}

if (theForm.address.value == "") {

	alert("Please enter your Address");

	theForm.address.focus();

	return (false);

	}

if (theForm.city.value == "") {

	alert("Please enter a City Name.");

	theForm.city.focus();

	return (false);

	}

if (theForm.state.value == "") {

	alert("Please enter a State.");

	theForm.state.focus();

	return (false);

	}

if (theForm.zip.value == "")  {

	alert("Please enter Zip Code.");

	theForm.zip.focus();

	return (false);

	}

if (theForm.phone.value == "")  {

	alert("Please enter your Phone Number");

	theForm.phone.focus();

	return (false);

	}

if (theForm.email.value == "")  {

	alert("Please enter your email address.");

	theForm.email.focus();

	return (false);

	}

if (theForm.message.value == "")  {

	alert("Please enter your message.");

	theForm.message.focus();

	return (false);

	}

}

function enrollValidate(theForm) {

if (theForm.gname.value == "") {

	alert("Please enter your Given Name");

	theForm.gname.focus();

	return (false);

	}

if (theForm.tname.value == "") {

	alert("Please enter your name on Name Tag");

	theForm.tname.focus();

	return (false);

	}

if (theForm.bdate.value == "") {

	alert("Please enter your Birth Date");

	theForm.bdate.focus();

	return (false);

	}

if (theForm.gender.value == "") {

	alert("Please specify your Gender");

	theForm.lname.focus();

	return (false);

	}

if (theForm.address.value == "") {

	alert("Please enter your Address");

	theForm.address.focus();

	return (false);

	}

if (theForm.city.value == "") {

	alert("Please enter a City Name.");

	theForm.city.focus();

	return (false);

	}

if (theForm.zip.value == "")  {

	alert("Please enter Zip Code.");

	theForm.zip.focus();

	return (false);

	}

if (theForm.hphone.value == "")  {

	alert("Please enter your Home Phone Number");

	theForm.hphone.focus();

	return (false);

	}


if (theForm.term.value == "")  {

	alert("Please enter your Course Term");

	theForm.term.focus();

	return (false);

	}

if (theForm.sign.value == "")  {

	alert("Please enter your full name as a signature.");

	theForm.sign.focus();

	return (false);

	}

}
// -->

