<!--
function DoSubmit() {
	var	theForm = document.forms.infoForm;
	if( !AlertIfEmpty( theForm.firstName, "Please enter your First Name" ) ) {
		return;
	}	

	if( !AlertIfEmpty( theForm.lastName, "Please enter your Last Name" ) ) {
		return;
	}	

	if( !AlertIfEmpty( theForm.Title, "Please enter your Title" ) ) {
		return;
	}	
	
	if( !AlertIfEmpty( theForm.Company, "Please enter your Company Name" ) ) {
		return;
	}
	
	
	if( !AlertIfEmpty( theForm.Email, "Please enter your Email Address" ) ) {
		return;
	}	


	if( !ValidateEmailAddress( theForm.Email.value ) ) {
		return;
	}	
	
	if( !AlertIfEmpty( theForm.password, "Please enter your Password" ) ) {
		return;
	}	
	
	if( !AlertIfEmpty( theForm.password_2, "Please confirm your Password" ) ) {
		return;
	}	
	
	theForm.submit();	
}
// -->

