// Validation Check for Vehicle Finder Form

function fullcheck()
{
  var str=document.findform.email.value;

if(!validate_email(document.findform.email,1))
	return false;

if(!validate_text(document.findform.phone,1,"Blank space not allowed. Please Enter Your Phone Number."))
	return false;
	
if(!validate_text(document.findform.captcha_input,1,"Please insert the same letters and numbers you see in the image."))
	return false;
	
}


// ------------------------------------------------------------------------------------------------------------

function emailchk()
{
  var str=document.emailfriendform.email.value;

if(!validate_text(document.emailfriendform.name,1,"Blank space not allowed. Please Enter Your Name."))
	{
	document.emailfriendform.name.focus();
	}
return false;

if(!validate_text(document.emailfriendform.fname,1,"Blank space not allowed. Please Enter Your Friends Name."))
	{
	document.emailfriendform.fname.focus();
	}
return false;    

if(!validate_email(document.emailfriendform.email,1))
{
document.emailfriendform.focus();		
}
return false;
}


// ------------------------------------------------------------------------------------------------------------

function fullcheck1()
{
  var str=document.requestform.email.value;
//alert(str);

	if(!validate_text(document.requestform.name,1,"Blank space not allowed. Please Enter Your Name."))
	{
	document.requestform.name.select();
	return false;
	}
	
	if(!validate_text(document.requestform.phone,1,"Blank space not allowed. Please Enter Your Phone Number."))
	{
	document.requestform.phone.select();
	return false;
	}
	
     if (document.requestform.email.value=="")
        {
           alert ("Blank space not allowed. Please Enter Your Email Address.");
           document.requestform.email.select(); 
           return false;
	    }  
		
		
				if ((document.requestform.email.value).indexOf(" ")>=0)
		{
		alert ("Blank space not allowed inside email!");
		document.requestform.email.select();
		return false;
		}
	
		if (document.requestform.email.value.indexOf("@",1) == -1)
		{
			alert("Invalid E-Mail address");
			document.requestform.email.focus();
			document.requestform.email.select();
			return(false);
		}
		if (document.requestform.email.value.indexOf("@") == 0)
		{
			alert("Invalid E-Mail address");
			document.requestform.email.focus();
			document.requestform.email.select();
			return(false);
		}
		if (document.requestform.email.value.indexOf(".",5) == -1)
		{
			alert("Invalid E-Mail address");
			document.requestform.email.focus();
			document.requestform.email.select();
			return(false);
		}
		if (document.requestform.email.value.indexOf(".") == 0)
		{
			alert("Invalid E-Mail address");
			document.requestform.email.focus();
			document.requestform.email.select();
			return(false);
		}
		
		if ((document.requestform.email.value.lastIndexOf(".")) -(document.requestform.email.value.indexOf("@"))<4 )
		{
		
			alert("Invalid E-Mail address");
			document.requestform.email.focus();
			document.requestform.email.select();
			return(false);
		}
}


// ------------------------------------------------------------------------------------------------------------

function fullcheck2()
{
  var str=document.requestform1.email.value;
//alert(str);

	if(!validate_text(document.requestform1.name,1,"Blank space not allowed. Please Enter Your Name."))
	{
	document.requestform1.name.select();
	return false;
	}
	
	if(!validate_text(document.requestform1.phone,1,"Blank space not allowed. Please Enter Your Phone Number."))
	{
	document.requestform1.phone.select();
	return false;
	}
	
     if (document.requestform1.email.value=="")
        {
           alert ("Blank space not allowed. Please Enter Your Email Address.");
           document.requestform1.email.select(); 
           return false;
	    }		
		
				if ((document.requestform1.email.value).indexOf(" ")>=0)
		{
		alert ("Blank space not allowed inside email!");
		document.requestform1.email.select();
		return false;
		}
	
		if (document.requestform1.email.value.indexOf("@",1) == -1)
		{
			alert("Invalid E-Mail address");
			document.requestform1.email.focus();
			document.requestform1.email.select();
			return(false);
		}
		if (document.requestform1.email.value.indexOf("@") == 0)
		{
			alert("Invalid E-Mail address");
			document.requestform1.email.focus();
			document.requestform1.email.select();
			return(false);
		}
		if (document.requestform1.email.value.indexOf(".",5) == -1)
		{
			alert("Invalid E-Mail address");
			document.requestform1.email.focus();
			document.requestform1.email.select();
			return(false);
		}
		if (document.requestform1.email.value.indexOf(".") == 0)
		{
			alert("Invalid E-Mail address");
			document.requestform1.email.focus();
			document.requestform1.email.select();
			return(false);
		}
		
		if ((document.requestform1.email.value.lastIndexOf(".")) -(document.requestform1.email.value.indexOf("@"))<4 )
		{
		
			alert("Invalid E-Mail address");
			document.requestform1.email.focus();
			document.requestform1.email.select();
			return(false);
		}
		
		if(!validate_text(document.requestform1.captcha_input,1,"Blank space not allowed. Please insert the same letters and numbers you see in the image."))
		return false;
}


// ------------------------------------------------------------------------------------------------------------

function fullcheck3()
{
  var str=document.scheduleform.email.value;
//alert(str);

	if(!validate_text(document.scheduleform.fname,1,"Blank space not allowed. Please Enter Your First Name."))
	{
	document.scheduleform.fname.select();
	return false;
	}
	
	if(!validate_text(document.scheduleform.lname,1,"Blank space not allowed. Please Enter Your Last Name."))
	{
	document.scheduleform.lname.select();
	return false;
	}
	
     if (document.scheduleform.email.value=="")
        {
           alert ("Blank space not allowed. Please Enter Your Email Address.");
           document.scheduleform.email.select(); 
           return false;
	    }		
		
				if ((document.scheduleform.email.value).indexOf(" ")>=0)
		{
		alert ("Blank space not allowed inside email!");
		document.scheduleform.email.select();
		return false;
		}
	
		if (document.scheduleform.email.value.indexOf("@",1) == -1)
		{
			alert("Invalid E-Mail address");
			document.scheduleform.email.focus();
			document.scheduleform.email.select();
			return(false);
		}
		if (document.scheduleform.email.value.indexOf("@") == 0)
		{
			alert("Invalid E-Mail address");
			document.scheduleform.email.focus();
			document.scheduleform.email.select();
			return(false);
		}
		if (document.scheduleform.email.value.indexOf(".",5) == -1)
		{
			alert("Invalid E-Mail address");
			document.scheduleform.email.focus();
			document.scheduleform.email.select();
			return(false);
		}
		if (document.scheduleform.email.value.indexOf(".") == 0)
		{
			alert("Invalid E-Mail address");
			document.scheduleform.email.focus();
			document.scheduleform.email.select();
			return(false);
		}
		
		if ((document.scheduleform.email.value.lastIndexOf(".")) -(document.scheduleform.email.value.indexOf("@"))<4 )
		{
		
			alert("Invalid E-Mail address");
			document.scheduleform.email.focus();
			document.scheduleform.email.select();
			return(false);
		}
}


// ------------------------------------------------------------------------------------------------------------

function fullcheck4()
{
  var str=document.offerform.email.value;
//alert(str);

	if(!validate_text(document.offerform.fname,1,"Blank space not allowed. Please Enter Your First Name."))
	{
	document.offerform.fname.select();
	return false;
	}
	
	if(!validate_text(document.offerform.lname,1,"Blank space not allowed. Please Enter Your Last Name."))
	{
	document.offerform.lname.select();
	return false;
	}
	
     if (document.offerform.email.value=="")
        {
           alert ("Blank space not allowed. Please Enter Your Email Address.");
           document.offerform.email.select(); 
           return false;
	    }		
		
				if ((document.offerform.email.value).indexOf(" ")>=0)
		{
		alert ("Blank space not allowed inside email!");
		document.offerform.email.select();
		return false;
		}
	
		if (document.offerform.email.value.indexOf("@",1) == -1)
		{
			alert("Invalid E-Mail address");
			document.offerform.email.focus();
			document.offerform.email.select();
			return(false);
		}
		if (document.offerform.email.value.indexOf("@") == 0)
		{
			alert("Invalid E-Mail address");
			document.offerform.email.focus();
			document.offerform.email.select();
			return(false);
		}
		if (document.offerform.email.value.indexOf(".",5) == -1)
		{
			alert("Invalid E-Mail address");
			document.offerform.email.focus();
			document.offerform.email.select();
			return(false);
		}
		if (document.offerform.email.value.indexOf(".") == 0)
		{
			alert("Invalid E-Mail address");
			document.offerform.email.focus();
			document.offerform.email.select();
			return(false);
		}
		
		if ((document.offerform.email.value.lastIndexOf(".")) -(document.offerform.email.value.indexOf("@"))<4 )
		{
		
			alert("Invalid E-Mail address");
			document.offerform.email.focus();
			document.offerform.email.select();
			return(false);
		}
}

// ------------------------------------------------------------------------------------------------------------

function fullcheck5()
{
  var str=document.tradeform.email.value;
//alert(str);

	if(!validate_text(document.tradeform.fname,1,"Blank space not allowed. Please Enter Your First Name."))
	{
	document.tradeform.fname.select();
	return false;
	}
	
	if(!validate_text(document.tradeform.lname,1,"Blank space not allowed. Please Enter Your Last Name."))
	{
	document.tradeform.lname.select();
	return false;
	}
	
     if (document.tradeform.email.value=="")
        {
           alert ("Blank space not allowed. Please Enter Your Email Address.");
           document.tradeform.email.select(); 
           return false;
	    }		
		
				if ((document.tradeform.email.value).indexOf(" ")>=0)
		{
		alert ("Blank space not allowed inside email!");
		document.tradeform.email.select();
		return false;
		}
	
		if (document.tradeform.email.value.indexOf("@",1) == -1)
		{
			alert("Invalid E-Mail address");
			document.tradeform.email.focus();
			document.tradeform.email.select();
			return(false);
		}
		if (document.tradeform.email.value.indexOf("@") == 0)
		{
			alert("Invalid E-Mail address");
			document.tradeform.email.focus();
			document.tradeform.email.select();
			return(false);
		}
		if (document.tradeform.email.value.indexOf(".",5) == -1)
		{
			alert("Invalid E-Mail address");
			document.tradeform.email.focus();
			document.tradeform.email.select();
			return(false);
		}
		if (document.tradeform.email.value.indexOf(".") == 0)
		{
			alert("Invalid E-Mail address");
			document.tradeform.email.focus();
			document.tradeform.email.select();
			return(false);
		}
		
		if ((document.tradeform.email.value.lastIndexOf(".")) -(document.tradeform.email.value.indexOf("@"))<4 )
		{
		
			alert("Invalid E-Mail address");
			document.tradeform.email.focus();
			document.tradeform.email.select();
			return(false);
		}
}



// ------------------------------------------------------------------------------------------------------------

function fullcheck6()
{
  var str=document.quoteform.email.value;
//alert(str);

	if(!validate_text(document.quoteform.fname,1,"Blank space not allowed. Please Enter Your First Name."))
	{
	document.quoteform.fname.select();
	return false;
	}
	
	if(!validate_text(document.quoteform.lname,1,"Blank space not allowed. Please Enter Your Last Name."))
	{
	document.quoteform.lname.select();
	return false;
	}
	
     if (document.quoteform.email.value=="")
        {
           alert ("Blank space not allowed. Please Enter Your Email Address.");
           document.quoteform.email.select(); 
           return false;
	    }		
		
				if ((document.quoteform.email.value).indexOf(" ")>=0)
		{
		alert ("Blank space not allowed inside email!");
		document.quoteform.email.select();
		return false;
		}
	
		if (document.quoteform.email.value.indexOf("@",1) == -1)
		{
			alert("Invalid E-Mail address");
			document.quoteform.email.focus();
			document.quoteform.email.select();
			return(false);
		}
		if (document.quoteform.email.value.indexOf("@") == 0)
		{
			alert("Invalid E-Mail address");
			document.quoteform.email.focus();
			document.quoteform.email.select();
			return(false);
		}
		if (document.quoteform.email.value.indexOf(".",5) == -1)
		{
			alert("Invalid E-Mail address");
			document.quoteform.email.focus();
			document.quoteform.email.select();
			return(false);
		}
		if (document.quoteform.email.value.indexOf(".") == 0)
		{
			alert("Invalid E-Mail address");
			document.quoteform.email.focus();
			document.quoteform.email.select();
			return(false);
		}
		
		if ((document.quoteform.email.value.lastIndexOf(".")) -(document.quoteform.email.value.indexOf("@"))<4 )
		{
		
			alert("Invalid E-Mail address");
			document.quoteform.email.focus();
			document.quoteform.email.select();
			return(false);
		}
}



//-----------------------------------------------------------------------------------------


// Validation Check for Coupon Form

function fullcheck7()
{
  var str=document.couponform.email.value;

if(!validate_text(document.couponform.fname,1,"Blank space not allowed. Please Enter Your First Name."))
		return false;

if(!validate_text(document.couponform.lname,1,"Blank space not allowed. Please Enter Your Last Name."))
		return false;

if(!validate_email(document.couponform.email,1))
		return false;
		
if(!validate_text(document.couponform.captcha_input,1,"Blank space not allowed. Please insert the same letters and numbers you see in the image."))
		return false;
}


//-----------------------------------------------------------------------------------------


// Validation Check for Evaluation Coupon Form

function fullcheck8()
{
  var str=document.evaluateform.email.value;

if(!validate_text(document.evaluateform.name,1,"Blank space not allowed. Please Enter Your Name."))
		return false;
		
if(!validate_email(document.evaluateform.email,1))
		return false;

if(!validate_text(document.evaluateform.year,1,"Blank space not allowed. Please Enter Year."))
		return false;

if(!validate_text(document.evaluateform.make,1,"Blank space not allowed. Please Enter Make."))
		return false;
		
if(!validate_text(document.evaluateform.model,1,"Blank space not allowed. Please Enter Model."))
		return false;
		
if(!validate_text(document.evaluateform.trim,1,"Blank space not allowed. Please Enter Trim."))
		return false;
		
if(!validate_text(document.evaluateform.miles,1,"Blank space not allowed. Please Enter Miles."))
		return false;
		
if(!validate_text(document.evaluateform.color,1,"Blank space not allowed. Please Enter Color."))
		return false;
		
if(!validate_text(document.evaluateform.captcha_input,1,"Blank space not allowed. Please insert the same letters and numbers you see in the image."))
		return false;
}


//-----------------------------------------------------------------------------------------


// Validation Check for Ask A Tech Form

function fullcheck9()
{
  var str=document.techform.email.value;

if(!validate_text(document.techform.name,1,"Blank space not allowed. Please Enter Your Name."))
		return false;
		
if(!validate_email(document.techform.email,1))
		return false;

if(!validate_text(document.techform.phone,1,"Blank space not allowed. Please Enter Your Phone."))
		return false;

if(!validate_text(document.techform.concern,1,"Blank space not allowed. Please Enter Concern."))
		return false;
		
if(!validate_text(document.techform.captcha_input,1,"Blank space not allowed. Please insert the same letters and numbers you see in the image."))
		return false;

}


//-----------------------------------------------------------------------------------------


// Validation Check for Ask A Tech Form

function fullcheck10()
{
  var str=document.appliform.email.value;

if(!validate_text(document.appliform.lname,1,"Blank space not allowed. Please Enter Your Last Name."))
		return false;
		
if(!validate_text(document.appliform.fname,1,"Blank space not allowed. Please Enter Your First Name."))
		return false;
		
if(!validate_email(document.appliform.email,1))
		return false;

if(!validate_text(document.appliform.address,1,"Blank space not allowed. Please Enter Your Address."))
		return false;

if(!validate_text(document.appliform.city,1,"Blank space not allowed. Please Enter Your City."))
		return false;
		
if(!validate_text(document.appliform.state,1,"Blank space not allowed. Please Enter Your State."))
		return false;
		
if(!validate_text(document.appliform.zip,1,"Blank space not allowed. Please Enter Your Zip."))
		return false;
		
if(!validate_text(document.appliform.phone,1,"Blank space not allowed. Please Enter Your Phone."))
		return false;
		
var chks1 = document.appliform.elements['pos[]'];
var hasChecked1 = false;
for (var i=0;i<chks1.length;i++)
{
if (chks1[i].checked)
{
hasChecked1 = true;
break;
}
}
if (!hasChecked1)
{
alert("Please select at least one position.");
chks1[0].focus();
return false;
}
		
if(!validate_text(document.appliform.dateavailable,1,"Blank space not allowed. Please Enter Your Date Availability."))
		return false;
		
		
if ( ( document.appliform.employed[0].checked == false ) && ( document.appliform.employed[1].checked == false ))
{
alert ("Please check have you ever been employed by this company");
document.appliform.employed[0].focus();
return false;
}

if(!validate_text(document.appliform.captcha_input,1,"Blank space not allowed. Please insert the same letters and numbers you see in the image."))
		return false;
		
}



// ------------------------------------------------------------------------------------------------------------

// Validation Check for Vehicle Finder Form

function fullcheck12()
{
  var str=document.accessoriesform.email.value;
  
  if(!validate_text(document.accessoriesform.name,1,"Blank space not allowed. Please Enter Your Name."))
	return false;

	if(!validate_email(document.accessoriesform.email,1))
	return false;

	if(!validate_text(document.accessoriesform.phone,1,"Blank space not allowed. Please Enter Your Phone Number."))
	return false;
	
	if(!validate_text(document.accessoriesform.year,1,"Blank space not allowed. Please Enter Year."))
	return false;
	
	if(!validate_text(document.accessoriesform.make,1,"Blank space not allowed. Please Enter Make."))
	return false;
	
	if(!validate_text(document.accessoriesform.model,1,"Blank space not allowed. Please Enter Model."))
	return false;
	
	if(!validate_text(document.accessoriesform.description,1,"Blank space not allowed. Please Enter Part Description."))
	return false;
	
	if(!validate_text(document.accessoriesform.captcha_input,1,"Blank space not allowed. Please insert the same letters and numbers you see in the image."))
		return false;
	
}


// ------------------------------------------------------------------------------------------------------------


// Validation Check for Vehicle Finder Form

function fullcheck13()
{
  var str=document.appointmentform.email.value;
  
  if(!validate_text(document.appointmentform.name,1,"Blank space not allowed. Please Enter Your Name."))
	return false;

if(!validate_email(document.appointmentform.email,1))
	return false;

if(!validate_text(document.appointmentform.phone,1,"Blank space not allowed. Please Enter Your Phone Number."))
	return false;
	
if(!validate_text(document.appointmentform.city,1,"Blank space not allowed. Please Enter Your City."))
	return false;
	
if(!validate_text(document.appointmentform.state,1,"Blank space not allowed. Please Enter Your State."))
	return false;
	
if(!validate_text(document.appointmentform.date,1,"Blank space not allowed. Please Enter Date."))
	return false;
	
if(!validate_text(document.appointmentform.year,1,"Blank space not allowed. Please Enter Year."))
	return false;
	
if(!validate_text(document.appointmentform.make,1,"Blank space not allowed. Please Enter Make."))
	return false;
	
if(!validate_text(document.appointmentform.model,1,"Blank space not allowed. Please Enter Model."))
	return false;
	
if(!validate_text(document.appointmentform.mileage,1,"Blank space not allowed. Please Enter Mileage."))
	return false;
	
if(!validate_text(document.appointmentform.captcha_input,1,"Blank space not allowed. Please insert the same letters and numbers you see in the image."))
		return false;
	
}


// ------------------------------------------------------------------------------------------------------------


// Validation Check for Vehicle Finder Form

function fullcheck14()
{
  var str=document.creditform.email.value;
  
  if ( ( document.creditform.atype[0].checked == false ) && ( document.creditform.atype[1].checked == false ))
{
alert ("Please choose your Application Type");
document.creditform.atype[0].focus();
return false;
}
  
  if(!validate_text(document.creditform.lname,1,"Blank space not allowed. Please Enter Your Last Name."))
	return false;
	
if(!validate_text(document.creditform.fname,1,"Blank space not allowed. Please Enter Your First Name."))
	return false;
	
if(!validate_text(document.creditform.mname,1,"Blank space not allowed. Please Enter Your Middle Initial."))
	return false;
	
if(!validate_text(document.creditform.address,1,"Blank space not allowed. Please Enter Your Address."))
	return false;

if(!validate_text(document.creditform.city,1,"Blank space not allowed. Please Enter Your City."))
	return false;
	
if(!validate_text(document.creditform.state,1,"Blank space not allowed. Please Enter Your State."))
	return false;

if(!validate_text(document.creditform.zip,1,"Blank space not allowed. Please Enter Your Zip."))
	return false;

if(!validate_text(document.creditform.phone,1,"Blank space not allowed. Please Enter Your Phone Number."))
	return false;
	
if(!validate_email(document.creditform.email,1))
	return false;

if(!validate_text(document.creditform.dob,1,"Blank space not allowed. Please Enter Your Date of Birth."))
	return false;
	
if(!validate_text(document.creditform.sno,1,"Blank space not allowed. Please Enter Your Social Security Number."))
	return false;
	
if(!validate_text(document.creditform.resyears,1,"Blank space not allowed. Please Enter Year of Residence."))
	return false;
	
if(!validate_text(document.creditform.resmonth,1,"Blank space not allowed. Please Enter Months of Residence."))
	return false;
	
if ( ( document.creditform.own[0].checked == false ) && ( document.creditform.own[1].checked == false ))
{
alert ("Please choose your House Type");
document.creditform.own[0].focus();
return false;
}
	
if(!validate_text(document.creditform.payment,1,"Blank space not allowed. Please Enter Payment."))
	return false;
	
if(!validate_text(document.creditform.ename,1,"Blank space not allowed. Please Enter Employers Name."))
	return false;
	
if(!validate_text(document.creditform.occupation,1,"Blank space not allowed. Please Enter Your Occupation."))
	return false;
	
if(!validate_text(document.creditform.income,1,"Blank space not allowed. Please Enter Your Monthly Income."))
	return false;
	
if(!validate_text(document.creditform.jyears,1,"Blank space not allowed. Please Enter Years of Job."))
	return false;
	
if(!validate_text(document.creditform.jmonth,1,"Blank space not allowed. Please Enter Months of Job."))
	return false;
	
if(!validate_text(document.creditform.captcha_input,1,"Blank space not allowed. Please insert the same letters and numbers you see in the image."))
		return false;
		
if(!validate_text(document.creditform.captcha_input,1,"Blank space not allowed. Please insert the same letters and numbers you see in the image."))
		return false;
	
}


// ------------------------------------------------------------------------------------------------------------


// Validation Check for Vehicle Finder Form

function fullcheck15()
{
  var str=document.creditform1.email.value;
  
  if ( ( document.creditform1.atype1[0].checked == false ) && ( document.creditform1.atype1[1].checked == false ))
{
alert ("Please choose your Application Type");
document.creditform1.atype1[0].focus();
return false;
}
  
  if(!validate_text(document.creditform1.lname,1,"Blank space not allowed. Please Enter Your Last Name."))
	return false;
	
if(!validate_text(document.creditform1.fname,1,"Blank space not allowed. Please Enter Your First Name."))
	return false;
	
if(!validate_text(document.creditform1.mname,1,"Blank space not allowed. Please Enter Your Middle Initial."))
	return false;
	
if(!validate_text(document.creditform1.address,1,"Blank space not allowed. Please Enter Your Address."))
	return false;

if(!validate_text(document.creditform1.city,1,"Blank space not allowed. Please Enter Your City."))
	return false;
	
if(!validate_text(document.creditform1.state,1,"Blank space not allowed. Please Enter Your State."))
	return false;

if(!validate_text(document.creditform1.zip,1,"Blank space not allowed. Please Enter Your Zip."))
	return false;

if(!validate_text(document.creditform1.phone,1,"Blank space not allowed. Please Enter Your Phone Number."))
	return false;
	
if(!validate_email(document.creditform1.email,1))
	return false;

if(!validate_text(document.creditform1.dob,1,"Blank space not allowed. Please Enter Your Date of Birth."))
	return false;
	
if(!validate_text(document.creditform1.sno,1,"Blank space not allowed. Please Enter Your Social Security Number."))
	return false;
	
if(!validate_text(document.creditform1.resyears,1,"Blank space not allowed. Please Enter Year of Residence."))
	return false;
	
if(!validate_text(document.creditform1.resmonth,1,"Blank space not allowed. Please Enter Months of Residence."))
	return false;
	
if ( ( document.creditform1.own[0].checked == false ) && ( document.creditform1.own[1].checked == false ))
{
alert ("Please choose your House Type");
document.creditform1.own[0].focus();
return false;
}
	
if(!validate_text(document.creditform1.payment,1,"Blank space not allowed. Please Enter Payment."))
	return false;
	
if(!validate_text(document.creditform1.ename,1,"Blank space not allowed. Please Enter Employers Name."))
	return false;
	
if(!validate_text(document.creditform1.occupation,1,"Blank space not allowed. Please Enter Your Occupation."))
	return false;
	
if(!validate_text(document.creditform1.income,1,"Blank space not allowed. Please Enter Your Monthly Income."))
	return false;
	
if(!validate_text(document.creditform1.jyears,1,"Blank space not allowed. Please Enter Years of Job."))
	return false;
	
if(!validate_text(document.creditform1.jmonth,1,"Blank space not allowed. Please Enter Months of Job."))
	return false;
	
if(!validate_text(document.creditform1.clname,1,"Blank space not allowed. Please Enter Co-Applicant Last Name."))
	return false;
	
if(!validate_text(document.creditform1.cfname,1,"Blank space not allowed. Please Enter Co-Applicant First Name."))
	return false;
	
if(!validate_text(document.creditform1.cmname,1,"Blank space not allowed. Please Enter Co-Applicant Middle Initial."))
	return false;
	
if(!validate_text(document.creditform1.caddress,1,"Blank space not allowed. Please Enter Co-Applicant Address."))
	return false;
	
if(!validate_email(document.creditform1.cemail,1))
	return false;

if(!validate_text(document.creditform1.ccity,1,"Blank space not allowed. Please Enter Co-Applicant City."))
	return false;
	
if(!validate_text(document.creditform1.cstate,1,"Blank space not allowed. Please Enter Co-Applicant State."))
	return false;

if(!validate_text(document.creditform1.czip,1,"Blank space not allowed. Please Enter Co-Applicant Zip."))
	return false;

if(!validate_text(document.creditform1.cphone,1,"Blank space not allowed. Please Enter Co-Applicant Phone Number."))
	return false;
	
if(!validate_text(document.creditform1.csno,1,"Blank space not allowed. Please Enter Co-Applicant Social Security Number."))
	return false;
	
if(!validate_text(document.creditform1.cename,1,"Blank space not allowed. Please Enter Co-Applicant Employers Name."))
	return false;
	
if(!validate_text(document.creditform1.coccupation,1,"Blank space not allowed. Please Enter Co-Applicant Occupation."))
	return false;
	
if(!validate_text(document.creditform1.cjyears,1,"Blank space not allowed. Please Enter Co-Applicant Years of Job."))
	return false;
	
if(!validate_text(document.creditform1.cjmonth,1,"Blank space not allowed. Please Enter Co-Applicant Months of Job."))
	return false;
	
if(!validate_text(document.creditform1.captcha_input,1,"Blank space not allowed. Please insert the same letters and numbers you see in the image."))
		return false;	
	
}


// ------------------------------------------------------------------------------------------------------------


// Validation Check for Vehicle Finder Form

function fullcheck16()
{
	if(!validate_text(document.findform1.make,1,"Blank space not allowed. Please Enter Make of your car."))
	return false;
	
	if(!validate_text(document.findform1.color,1,"Blank space not allowed. Please Enter Color of your car."))
	return false;
	
	if(!validate_text(document.findform1.year,1,"Blank space not allowed. Please Enter Year of your car."))
	return false;
	
	if(!validate_text(document.findform1.price,1,"Blank space not allowed. Please Enter Price of your car."))
	return false;
	
	if(!validate_text(document.findform1.model,1,"Blank space not allowed. Please Enter Model of your car."))
	return false;
	
	if(!validate_text(document.findform1.mileage,1,"Blank space not allowed. Please Enter Mileage of your car."))
	return false;
	
}


// ------------------------------------------------------------------------------------------------------------

// Validation Check for Vehicle Finder Form

function formcheck()
{
	if(!validate_text(document.contestform.name,1,"Blank space not allowed. Please Enter your Name."))
	return false;
	
	if(!validate_email(document.contestform.email,1))
	return false;
	
	if(document.contestform.draw.selectedIndex==0){
		alert("Please select where you heard about this drawing.");	
		document.contestform.draw.focus();
		return false;
	}
	
	if(!validate_text(document.contestform.captcha_input,1,"Blank space not allowed. Please insert the same letters and numbers you see in the image."))
		return false;
	
}


// ------------------------------------------------------------------------------------------------------------