PopWin.title = "The Wall Street Journal - Find My Account Number";
PopWin.width = 550;
PopWin.height = 150;  // just height of headings
PopWin.bgcolor = "#ffffee";
function validateFormInfo(form)
{
	firstError = "";


	if (form.elements["Email"])
	{
		if(!(form.elements["Email"].value) && !(form.elements["Phone"].value) && !(form.elements["AreaCode"].value))
		{
			checkString(form.elements["Email"],"Email address or Phone number",Required);
		}
		else
		{
			checkPhoneNum(form.elements["AreaCode"], form.elements["Phone"], "", NotRequired);
			checkEmail(form.elements["Email"],NotRequired);
		}

		checkString(form.elements["LastName"],"Last Name",Required);
	}

	if(errorMessageList.length == 0) {
		PopWin.close();
		return;
	}
	else
	{
		PopWin.show("Error");
		return false;
	}
//	return false;
}

