PopWin.title = "E-mail Address";
PopWin.width = 550;
PopWin.height = 150;  // just height of headings
PopWin.bgcolor = "#ffffff";
function validateFormInfo(form)
{  
	firstError = "";
	checkAccountNum(form.elements["AccountNum"], Required);
	checkEmail(form.elements["Email"], Required);
	checkString(form.elements["FirstName"], "First Name", Required);
	checkString(form.elements["LastName"], "Last Name", Required);
	
	if(errorMessageList.length == 0) {
		PopWin.close();
		PopWin.show("Confirm");
	}
	else
		PopWin.show("Error");  			
	return false;
}
