function ValidatePQForm()
{
    if($('pq_business_name').value == "" )
    {
    	alert( "Please type in the name of your business." );
    	$('pq_business_name').focus();
    	return(false);
    }
    
    if($('pq_contact_name').value == "" )
    {
    	alert( "Please type in a contact name." );
    	$('pq_contact_name').focus();
    	return(false);
    }
    
    if($('pq_zip_code').value.search(/^[0-9]{5}/) == -1 )
    {
    	alert( "Please type in zip code of your business." );
    	$('pq_zip_code').focus();
    	return(false);
    }
    
    if($('pq_business_phone').value == "" )
    {
    	alert( "Please type in a contact phone number." );
    	$('pq_business_phone').focus();
    	return(false);
    }
    
    var EmailRegex = "^[a-zA-Z0-9\-\_\.]+\@[a-zA-Z0-9\-\_\.]+\.[a-zA-Z0-9]+$";
    if($('pq_business_email').value.search(EmailRegex) == -1 )
    {
    	alert( "Please type in a valid email address." );
    	$('pq_business_email').focus();
    	return(false);
    }
    
    if($('pq_rent_own').value == "")
    {
    	alert( "Please tell us if you currently rent or own your business location." );
    	$('pq_rent_own').focus();
    	return(false);
    }
    
    if($('pq_rent_amount').value == "" )
    {
    	alert( "Accepting Visa or Mastercard is required.  Please tell us your monthly average." );
    	$('pq_rent_amount').focus();
    	return(false);
    }
    
    if($('pq_amount_requested').value == "" )
    {
    	alert( "Please type in the amount you would like to receive." );
    	$('pq_amount_requested').focus();
    	return(false);
    }
    
    if($('pq_had_cash_advance').value == "" )
    {
    	alert( "Please tell us if you have had a cash advance before." );
    	$('pq_had_cash_advance').focus();
    	return(false);
    }
    
    if($('pq_cash_advance_balance').value == "" && $('pq_had_cash_advance').value == "Yes" )
    {
    	alert( "Please if you have an oustanding balance on any of your cash advances." );
    	$('pq_cash_advance_balance').focus();
    	return(false);
    }
    
    if($('pq_has_liens').value == "" )
    {
    	alert( "Please tell us if you have had any bankruptcies or liens." );
    	$('pq_has_liens').focus();
    	return(false);
    }
    
    return(true);
}