function Blank_TextField_Validator()
{
if (client_form.FIRST_NAME.value == "")
{
alert("Please fill in the First Name field.");
client_form.FIRST_NAME.focus();
return (false);
}
if (client_form.LAST_NAME.value == "")
{
alert("Please fill in the Last Name field.");
client_form.LAST_NAME.focus();
return (false);
}
if (client_form.ADDRESS1.value == "")
{
alert("Please fill in the Address 1 field.");
client_form.ADDRESS1.focus();
return (false);
}
if (client_form.CITY.value == "")
{
alert("Please fill in the City field.");
client_form.CITY.focus();
return (false);
}
if (client_form.EMAIL.value == "")
{
alert("Please fill in the Email field.");
client_form.EMAIL.focus();
return (false);
}
if (client_form.ZIP.value == "")
{
alert("Please fill in the Zip Code field.");
client_form.ZIP.focus();
return (false);
}
if (client_form.DAY_PHONE_A.value == "")
{
alert("Please fill in the Day Phone fields.");
client_form.DAY_PHONE_A.focus();
return (false);
}
if (client_form.DAY_PHONE_B.value == "")
{
alert("Please fill in the Day Phone fields.");
client_form.DAY_PHONE_B.focus();
return (false);
}
if (client_form.DAY_PHONE_C.value == "")
{
alert("Please fill in the Day Phone fields.");
client_form.DAY_PHONE_C.focus();
return (false);
}
if (client_form.NIGHT_PHONE_A.value == "")
{
alert("Please fill in the Night Phone fields.");
client_form.NIGHT_PHONE_A.focus();
return (false);
}
if (client_form.NIGHT_PHONE_B.value == "")
{
alert("Please fill in the Night Phone fields.");
client_form.NIGHT_PHONE_B.focus();
return (false);
}
if (client_form.NIGHT_PHONE_C.value == "")
{
alert("Please fill in the Night Phone fields.");
client_form.NIGHT_PHONE_C.focus();
return (false);
}
if (client_form.REFERRED_BY.value == "")
{
alert("Please tell us who you were referred by.");
client_form.REFERRED_BY.focus();
return (false);
}
return (true);
}