function vCLRF(theForm)
{
    /*
    if (!valCheck(theForm.c1[0], theForm.account_number_1, theForm.account_number_2, theForm.account_number_3, theForm.account_number_4))
    return false;
*/
    if (!valRequired(theForm.contact_name,"Please type the Contact Name"))
        return false;

    if (!valRequired(theForm.company_name,"Please type Company Name"))
        return false;

    if (!valRequired(theForm.address,"Please type the Address"))
        return false;

    if (!valRequired(theForm.city,"Please type City"))
        return false;
    
    if (!valRequired(theForm.state,"Please select State/Province"))
        return false;
    
    if (!valNumber(theForm.zip,"Please type the zip code",true))
        return false;

    if (!valEmail(theForm.email,"Please type the E-Mail",true))
        return false;
	
    if (!valNumber(theForm.phone_area,"Please type the Phone Number",true))
        return false;
	
    return true;
}



function vCNTC(theForm)
{
    if (!valCheck(theForm.customer[0], theForm.account_number_1, theForm.account_number_2, theForm.account_number_3, theForm.account_number_4))
        return false;

    if (!valRequired(theForm.contact_name,"Please type the Contact Name"))
        return false;

    if (!valRequired(theForm.company_name,"Please type Company Name"))
        return false;

    if (!valRequired(theForm.address,"Please type the Address"))
        return false;

    if (!valRequired(theForm.city,"Please type City"))
        return false;
    
    if (!valRequired(theForm.state,"Please select State/Province"))
        return false;
    
    if (!valNumber(theForm.zip,"Please type the zip code",true))
        return false;

    if (!valEmail(theForm.email,"Please type the E-Mail",true))
        return false;
	
    if (!valNumber(theForm.phone_area,"Please type the Phone Number",true))
        return false;
	
    return true;
}

function vRRSC(theForm)
{
    if (!valCheck(theForm.customer[0], theForm.account_number_1, theForm.account_number_2, theForm.account_number_3, theForm.account_number_4))
        return false;

    if (!valRequired(theForm.contact_name,"Please type the Contact Name"))
        return false;

    if (!valRequired(theForm.title,"Please type your Title"))
        return false;
	
    if (!valRequired(theForm.company_name,"Please type Company Name"))
        return false;

    if (!valRequired(theForm.address,"Please type the Address"))
        return false;
    
    if (!valRequired(theForm.city,"Please type the city"))
        return false;

    if (!valRequired(theForm.state,"Please select State/Province"))
        return false;
    
    if (!valNumber(theForm.zip,"Please type the zip code",true))
        return false;

    if (!valEmail(theForm.email,"Please type the E-Mail",true))
        return false;
	
    if (!valNumber(theForm.phone_area,"Please type the Phone Number",true))
        return false;
	
    return true;

}

function vLSNA(theForm)
{
    if (!valRequired(theForm.contact_name,"Please type the Contact Name"))
        return false;

    if (!valRequired(theForm.title,"Please type your Title"))
        return false;
	
    if (!valRequired(theForm.company_name,"Please type Company Name"))
        return false;

    if (!valRequired(theForm.address,"Please type the Address"))
        return false;

    if (!valRequired(theForm.city,"Please type City"))
        return false;
	
    if (!valRequired(theForm.state,"Please select State/Province"))
        return false;
	
    if (!valNumber(theForm.zip,"Please type the Zip Code",true))
        return false;

    if (!valEmail(theForm.email,"Please type the E-Mail",true))
        return false;

    if (!valNumber(theForm.phone_area,"Please type the Phone Number",true))
        return false;
	
    return true;

}
