<!--
function fValidateAttendeeInfo(frm){
	
	var theForm = eval("document." + frm);
	var aForm = new Array();
	var q = 0;
	var aMsg;
	aForm[q] = new Array(5);
	aForm[q][0] = "txtFirstName";
	aForm[q][1] = "t";
	aForm[q][2] = [1,3];
	aForm[q][3] = "First Name";
	q++;
	aForm[q] = new Array(5);
	aForm[q][0] = "txtLastName";
	aForm[q][1] = "t";
	aForm[q][2] = [1,3];
	aForm[q][3] = "Last Name";
	q++;
	aForm[q] = new Array(5);
	aForm[q][0] = "txtUserName";
	aForm[q][1] = "t";
	aForm[q][2] = [1,3];
	aForm[q][3] = "User Name";
	q++;
	aForm[q] = new Array(5);
	aForm[q][0] = "txtPassword";
	aForm[q][1] = "t";
	aForm[q][2] = [1];
	aForm[q][3] = "Password";
	q++;
	aForm[q] = new Array(5);
	aForm[q][0] = "txtEmail";
	aForm[q][1] = "t";
	aForm[q][2] = [1,9];
	aForm[q][3] = "Email Address";
	q++;
	aForm[q] = new Array(5);
	aForm[q][0] = "txtEmail|txtEmailConfirm";
	aForm[q][1] = "p";
	aForm[q][2] = [1];
	aForm[q][3] = "Email and Email Confirm";
	q++;
	aForm[q] = new Array(5);
	aForm[q][0] = "txtAddressOne";
	aForm[q][1] = "t";
	aForm[q][2] = [1];
	aForm[q][3] = "Address One";
	q++;
	aForm[q] = new Array(5);
	aForm[q][0] = "txtCity";
	aForm[q][1] = "t";
	aForm[q][2] = [1];
	aForm[q][3] = "City";
	q++;
	aForm[q] = new Array(5);
	aForm[q][0] = "txtPostCode";
	aForm[q][1] = "t";
	aForm[q][2] = [1];
	aForm[q][3] = "Postal Code";
	q++;
	aForm[q] = new Array(5);
	aForm[q][0] = "txtCountry";
	aForm[q][1] = "t";
	aForm[q][2] = [1];
	aForm[q][3] = "Country";
	q++;
	aForm[q] = new Array(5);
	aForm[q][0] = "txtHomeAddressOne";
	aForm[q][1] = "t";
	aForm[q][2] = [1];
	aForm[q][3] = "Home Address One";
	q++;
	aForm[q] = new Array(5);
	aForm[q][0] = "txtHomeCity";
	aForm[q][1] = "t";
	aForm[q][2] = [1];
	aForm[q][3] = "Home City";
	q++;
	aForm[q] = new Array(5);
	aForm[q][0] = "txtHomePostCode";
	aForm[q][1] = "t";
	aForm[q][2] = [1];
	aForm[q][3] = "Home Postal Code";
	q++;
	aForm[q] = new Array(5);
	aForm[q][0] = "txtHomeCountry";
	aForm[q][1] = "t";
	aForm[q][2] = [1];
	aForm[q][3] = "Home Country";
	q++;
	aForm[q] = new Array(5);
	aForm[q][0] = "txtPreferredPhone";
	aForm[q][1] = "t";
	aForm[q][2] = [1];
	aForm[q][3] = "Phone";
	
	aMsg = fChkFrm(frm, aForm);
	
	if(aMsg[1].length > 0){
		alert(aMsg[1]);
		return false;
	}
	else{
		return true;
	}
}
//-->