		function VerifyEntry(){  
		var errInd = true;  
		var errMsg = "\n The following required field(s) are empty: \n\n";  
		var errFcs = false;  
		var index = 0; 
			
			if (document.form1.FirstName.value == "") { 
				errInd = false;  
				index++; 

				errMsg += index +". First Name \n";  
				if (errFcs == false) {
					errFcs = true; 
					document.form1.FirstName.focus(); 
				} 
			} 
			
			if (document.form1.LastName.value == "") { 
				errInd = false;  
				index++; 

				errMsg += index +". Last Name \n";  
				if (errFcs == false) {
					errFcs = true; 
					document.form1.LastName.focus(); 
				} 
			} 					
											
			
			if (document.form1.Organization.value == "") { 
				errInd = false;  
				index++; 

				errMsg += index +". Organization \n";  
				if (errFcs == false) {
					errFcs = true; 
					document.form1.Organization.focus(); 
				} 
			} 
			
			if (document.form1.Email.value == "") { 
				errInd = false;  
				index++; 

				errMsg += index +". Email \n";  
				if (errFcs == false) {
					errFcs = true; 
					document.form1.Email.focus(); 
				} 
			} 
			
			if (document.form1.ConfirmEmail.value == "") { 
				errInd = false;  
				index++; 

				errMsg += index +". Confirm Email \n";  
				if (errFcs == false) {
					errFcs = true; 
					document.form1.ConfirmEmail.focus(); 
				} 
			} 
			
						
		// display msg to user  		
		if (errInd == false){  
			alert (errMsg);  
			return false; 
		} 
		return true;  
}		


//----------------------------------
// Check email and confirm email match
//----------------------------------
function CheckEmail() {
if (document.form1.Email.value !=
document.form1.ConfirmEmail.value) {
	alert ("Email and confirmation email address do not match. Please make sure you enter correct email address.");
	document.form1.Email.value ='';
	document.form1.ConfirmEmail.value ='';
	document.form1.Email.value.focus
	return false;
	}
return true;
}