// JavaScript Document

function Validate2()

{

	//--- Make sure the Name was entered

	if (document.frmEval.Name.value == 'Name:') {

		alert("Please enter a name to continue.");

		document.frmEval.Name.focus();

		document.frmEval.Name.select();

		return false;

	}

	

	//--- Make sure the EMail Address was entered

	if (document.frmEval.Email.value == 'Email:') {

		alert("Please enter an email address to continue.");

		document.frmEval.Email.focus();

		document.frmEval.Email.select();

		return false;

	}



	return true;

}
