// Only script specific to this form goes here.

// General-purpose routines are in a separate file.
function jump(from, to, length)

{

	if(from.value.length == length)

	{

	to.focus();

	}
}
// --------------------------------------------
//                  trim
// Trim leading/trailing whitespace off string
// --------------------------------------------

function trim(str)
{
  return str.replace(/^\s+|\s+$/g, '');
}

//////////////////////////////////////////////////////////////////////////////////////////////////
function IsvalidEmail(sFieldValue){
var REmail=/^\S+\@[\w-]+\.[\w\.-]+$/ ;
var str=sFieldValue;
	if(!str.match(REmail)) {
		return false;
	}else{
		return true;
	}	
}
//////////////////////////////////////////////////////////////////////////////////////////////////
function IsvalidURL(sFieldValue){
//var RUrl=/(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i/ ;
var RUrl=/^(https?):\/\/[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5}(([0-9]{1,5})?\/.*)?$/;

//var RUrl=/((https?)|(ftp)):\/\/[A-Za-z0-9\.-]{3,}\.[A-Za-z]{3}/;
var str=sFieldValue;
	if(!str.match(RUrl)) {
		return false;
	}else{
		return true;
	}	
}
//////////////////////////////////////////////////////////////////////////////////////////////////
function IsSpecialchar(sFieldValue){
var str='`~!@#$%^&*()_+={}[]:;<>\\,?/|""*'+ "'" ;
var checkStr = sFieldValue;
var i,j,ch,flag=0;
//alert(checkStr);
	for (i = 0; i < checkStr.length; i++){
		ch = checkStr.charAt(i);
			for (j = 0; j < str.length; j++){
				if (ch == str.charAt(j)){
					flag=1;
					break;
				}	
			}
	 }
return flag;  	
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

	function clearallcheck()
	{
		/*document.getElementById('firstrad1').checked = false;
		document.getElementById('firstrad2').checked = false;
		document.getElementById('radio').checked = false;
		document.getElementById('radio2').checked = false;
		document.getElementById('radio3').checked = false;*/
	}
	
	function showsecondpart(firstvalue)
	{
		
	//	alert(firstvalue);
		if(firstvalue == "Automobile Finance" )
			{
			document.getElementById('firstrad1').checked = true;
			document.getElementById('secondpart').style.display = 'inline';
			}
		else if(firstvalue == "Motorcycle Finance")
			{
				document.getElementById('firstrad2').checked = true;
				if(confirm("Are You sure, You want to go for Motorcycle Finance ?"))
				{
					//document.getElementById('secondpart').style.display = 'none';
					// window.location = 'redirect-to-partner.php?redirect=http://www.moneyforwheels.com';
					document.Application.redirect.value="http://www.moneyforwheels.com";
					document.Application.action="redirect-to-partner.php";
					document.Application.submit();
				}
				else
				{
					document.getElementById('firstrad1').checked = true;
				}
			}
	}	
	
	function showthirdpart(secondvalue)
	{
		if(secondvalue == "dealership" )
			document.getElementById('thirdpart').style.display = 'inline';
		else if(secondvalue == "privateparty")
		{
			if(confirm("Are You sure, You want to go for Private Party Finance ?"))
			{
			//	 window.location = 'redirect-to-partner.php?redirect=http://www.moneytoride.com';
				document.Application.redirect.value="http://www.moneytoride.com";
				document.Application.action="redirect-to-partner.php";
				document.Application.submit();
			}
		}
		else if(secondvalue == "refinance")
		{
			if(confirm("Are You sure, You want to go for Refinance Auto Loan ?"))
			{
				// window.location = 'redirect-to-partner.php?redirect=http://www.moneytoride.com';
				document.Application.redirect.value="http://www.moneytoride.com/refinance.php";
				document.Application.action="redirect-to-partner.php";
				document.Application.submit();
			}
		}
		document.getElementById('radio').checked = true;
	}	
	
	function showcreditissue(shorcreditissue)
	{
		if(shorcreditissue == "yes" )
			document.getElementById('credit_issue_span').style.display = 'inline';
		else
			document.getElementById('credit_issue_span').style.display = 'none';
	}
	
	
 function CreateBookmarkLink() {

 title = document.title; 
  // Blogger - Replace with <$BlogItemTitle$> 
  // MovableType - Replace with <$MTEntryTitle$>

 url = document.location.href;
  // Blogger - Replace with <$BlogItemPermalinkURL$> 
  // MovableType - Replace with <$MTEntryPermalink$>

	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) { // Opera Hotlist
		return true; }
 }
 
/*******************************************************************/

function check_contact(form)
{
	var msg="";
	if(trim(form.name.value)=="")
	{
		msg+="Please Enter Name\r\n";
	}
	else
  	{
		if(isAlpha(form.name.value) == false)
		{
			msg+="Please fill out Valid Name\r\n";	
		}
	}
	
	if(form.email.value=="")
	{
		msg+="Please Enter Email\r\n";
	}
	else
	{
		if(!validEmail(form.email.value))
		{
			msg+="Please fill out Valid Email Format(abc@domain.com)\r\n";	
		}
	}
	
	var Home1 = trim(form.phone1.value);
	var Home2 = trim(form.phone2.value);
	var Home3 = trim(form.phone3.value);
	var HomePhone = Home1 + "-" + Home2 + "-" + Home3;

	if (Home1 == "" && Home2 == "" && Home3 == "") 
	{
		
	}
	else
	{
		var strExpression = /^[0-9]{3}-[0-9]{3}-[0-9]{4}$/i; 
   		var kk= strExpression.test(HomePhone); 
		if(!kk)
		{
			msg+="Please fill out Valid Phone Number(123-456-7891)\r\n";	
		}
		
	}
	
	if(trim(form.message.value)=="")
	{
		msg+="Please Enter Message\r\n";
	}
	if(trim(form.security_code.value)=="")
	{
		msg+="Please Enter security code\r\n";
	}

	if (msg.length>0) 
	{
		alert(msg);
		return false;
	} 
	else 
	{ 
		return true; 
	}
}

/*******************************************************************/

function check_contact2(form)
{
	var msg="";

	if(trim(form.name.value)=="")
	{
		msg+="Please Enter Name\r\n";
	}
	else
  	{
		if(isAlphaSpace(form.name.value) == false)
		{
			msg+="Please fill out Valid Name\r\n";	
		}
	}
	
	if(trim(form.company_name.value)=="")
	{
		msg+="Please Enter Company Name\r\n";
	}
	else
  	{
		if(isAlphaSpace(form.company_name.value) == false)
		{
			msg+="Please fill out Valid Company Name\r\n";	
		}
	}
	
	if(trim(form.company_web_address.value)=="")
	{
		msg+="Please Enter Company Web Address\r\n";
	}
	else
  	{
		if(IsvalidURL(form.company_web_address.value) == false)
		{
			msg+="Please fill out Valid Company Web Address\r\n";	
		}
	}
	
	if(form.email.value=="")
	{
		msg+="Please Enter Email\r\n";
	}
	else
	{
		if(!validEmail(form.email.value))
		{
			msg+="Please fill out Valid Email Format(abc@domain.com)\r\n";	
		}
	}
	
	var Home1 = trim(form.phone1.value);
	var Home2 = trim(form.phone2.value);
	var Home3 = trim(form.phone3.value);
	var HomePhone = Home1 + "-" + Home2 + "-" + Home3;

	if (Home1 == "" && Home2 == "" && Home3 == "") 
	{
		
	}
	else
	{
		var strExpression = /^[0-9]{3}-[0-9]{3}-[0-9]{4}$/i; 
   		var kk= strExpression.test(HomePhone); 
		if(!kk)
		{
			msg+="Please fill out Valid Phone Number(123-456-7891)\r\n";	
		}
		
	}
	
	if(trim(form.message.value)=="")
	{
		msg+="Please Enter Message\r\n";
	}
	if(trim(form.security_code.value)=="")
	{
		msg+="Please Enter security code\r\n";
	}

	if (msg.length>0) 
	{
		alert(msg);
		return false;
	} 
	else 
	{ 
		return true; 
	}
}

/*************************************************/

function checkFeedbackForm(frm){

//check for name 
	if ( trim(frm.txiName.value).length<=0 ){
		alert("Sorry, but your name is required!");	
		frm.txiName.focus();
		return false;
	}

	if ( IsSpecialchar(trim(frm.txiName.value))){
		alert("Sorry, but your name contains some special character(s) which are not allowed!");	
		frm.txiName.focus();
		return false;
	}

//check for email
	if ( trim(frm.txiEmail.value).length<=0 ){
		alert("Sorry, but your email address is required!");	
		frm.txiEmail.focus();
		return false;
	}

	if (!IsvalidEmail(trim(frm.txiEmail.value))){
		alert("Sorry, but your email address is not correct!\n Please provide us a valid email address.\nThank You!");	
		frm.txiEmail.focus();
		return false;
	}

	/*if ( IsSpecialchar(trim(frm.txiEmail.value))){
		alert("Sorry, but your email contains some special character(s) which are not allowed!");	
		frm.txiEmail.focus();
		return false;
	}*/

//check for site layout
	if ( frm.layout.value==""){
		alert("Please select an option from 'Site Layout' list!");
		frm.layout.focus();
		return false;
	}

//check for Load time
	if ( frm.loadtime.value==""){
		alert("Please select an option from 'Load Time' list!");
		frm.sectionhead.focus();
		return false;
	}


//check for section heads
	if ( frm.sectionhead.value==""){
		alert("Please select an option from 'Section Heads' list!");
		frm.sectionhead.focus();
		return false;
	}


//check for user friendliness
	if ( frm.userfriend.value==""){
		alert("Please select an option from 'User Friendliness' list!");
		frm.userfriend.focus();
		return false;
	}



//check for comments
	if( trim(frm.txaComments.value).length<=0 || frm.txaComments.value==""){
		alert("Sorry, but comments are required!");
		frm.txaComments.focus();
		return false;
	}

	var pattern = /[a-zA-Z]/;
	if (!pattern.test(trim(frm.txaComments.value))){
		alert("Sorry, but comment are required!");
		frm.txaComments.focus();
		return false;
	}

if(frm.security_code.value==""   ){
      alert("Please enter the security_code!");
			frm.security_code.focus();
		return false;
	}
return true;

}

function open1(id)
{
	document.getElementById(id).style.display = '';
}
function remove(id,val)
{
	var email = 'txifriendEmail'+val;
	var name = 'txifriendName'+val;
	document.getElementById(id).style.display = 'none';
	document.getElementById(email).value = '';
	document.getElementById(name).value = '';

}

/**********************************/

function checkTellAFriendForm(frm){

//check for name 
	if ( trim(frm.txiName.value).length<=0 ){
		alert("Sorry, but your name is required!");	
		frm.txiName.focus();
		return false;
	}

	if ( IsSpecialchar(trim(frm.txiName.value))){
		alert("Sorry, but your name contains some special character(s) which are not allowed!");	
		frm.txiName.focus();
		return false;
	}

//check for email
	if ( trim(frm.txiEmail.value).length<=0 ){
		alert("Sorry, but your email address is required!");	
		frm.txiEmail.focus();
		return false;
	}

	if (!IsvalidEmail(trim(frm.txiEmail.value))){
		alert("Sorry, but your email address is not correct!\n Please provide us a valid email address.\nThank You!");	
		frm.txiEmail.focus();
		return false;
	}
	
	FreindDetail=0;
	
	for(i=1;i<=5;i++)
	{
		var alphaDigit=Array("","fisrt","second","third","fourth","fifth");
		// Check first Friend Detail
		if(!(trim(frm['txifriendName'+i].value)=="" && trim(frm['txifriendEmail'+i].value)==""))
		{
			if(trim(frm['txifriendName'+i].value)=="")
			{
				alert("Sorry, but your "+ alphaDigit[i] +" friend name is required!");	
				frm['txifriendName'+i].focus();
				return false;
			}
			if ( IsSpecialchar(trim(frm['txifriendName'+i].value))){
				alert("Sorry, but your "+ alphaDigit[i] +" friend name contains some special character(s) which are not allowed!");	
				frm['txifriendName'+i].focus();
				return false;
			}
			
			if(trim(frm['txifriendEmail'+i].value)=="")
			{
				alert("Sorry, but your "+ alphaDigit[i] +" friend's email address is required!");	
				frm['txifriendEmail'+i].focus();
				return false;
			}
			if ( !IsvalidEmail(trim(frm['txifriendEmail'+i].value))){
				alert("Sorry, but your "+ alphaDigit[i] +" friend's email address is not correct!\n Please provide us a valid email address.\nThank You!");	
				frm['txifriendEmail'+i].focus();
				return false;
			}
			FreindDetail++;
		}
	}
	
	if(FreindDetail==0)
	{
		alert("Sorry, but you have not provided any friend detail!");	
		frm.txifriendName1.focus();
		return false;
	}
	
	if ( trim(frm.txtMessage.value).length<=0 ){
		alert("Sorry, but your Message is required!");	
		frm.txtMessage.focus();
		return false;
	}



	if(frm.security_code.value=="")
	{
		  alert("Please enter the security_code!");
				frm.security_code.focus();
			return false;
		}
return true;

}



  /******************************************/

  function checkform (form){
	  
	var sep="\n";
	var msg="";
	
	var one_day=1000*60*60*24; 
	//Here we need to split the inputed dates to convert them into standard format
	
	var arr_block_name="none|unemployment";
	var block_test=new RegExp(arr_block_name , "gi" );
		//alert(block_test.test(form.Emp_Name.value));
		//alert(form.Emp_Name.value.search(block_test));

		/****
		// if(form.Emp_Name.value.search(block_test))
		//  OR				
		// if(block_test.test(form.Emp_Name.value))
		****/
	
	var arr_block_phone="1866483|1800829";
	var block_phone_test=new RegExp(arr_block_phone , "gi" );

	if (form.First_Name.value == "") 
	{
		msg+="Please fill out First name"+sep;
	}
	else
  	{
		if(isAlpha(form.First_Name.value) == false)
		{
			msg+="Please fill out Valid First name"+sep;	
		}
	}
	
	if (form.Last_Name.value == "") 
	{
    	msg+="Please fill out Last name"+sep;
	}
	else
  	{
		if(isAlpha(form.Last_Name.value) == false)
		{
			msg+="Please fill out Valid Last name"+sep;	
		}
	}
	
	if (form.Address.value == "") 
	{
		msg+="Please fill out Address"+sep;
	}
	
	if (form.City.value == "") 
	{
		msg+="Please fill out City"+sep;
	}
	if (form.State.value == "") 
	{
		msg+="Please fill out State"+sep;
	}
	
	var zipCode = form.Zip.value;
	if (form.Zip.value == "") 
	{
		msg+="Please fill out Zip"+sep;
	}
	else
	{
		if(!IsInt(form.Zip.value))
		{
			msg+="Please fill out Valid Zip"+sep;	
		}
		else if(zipCode.length != 5)
		{
			msg+="Zip must be of 5 digits"+sep;	
		}
	}
/*********/
	
	var Home1 = trim(form.Home_Phone1.value);
	var Home2 = trim(form.Home_Phone2.value);
	var Home3 = trim(form.Home_Phone3.value);
	var HomePhone = Home1 + "-" + Home2 + "-" + Home3;

	if (Home1 == "" || Home2 == "" || Home3 == "" || parseInt(Home1)==0  || parseInt(Home2)==0  || parseInt(Home3)==0 ) 
	{
		msg+="Invalid or Blocked Primary Home Phone"+sep;
	}
	else
	{
		var strExpression = /^[0-9]{3}-[0-9]{3}-[0-9]{4}$/i; 
   		var kk= strExpression.test(HomePhone); 
		if(!kk)
		{
			msg+="Please fill out Valid Home Phone(123-456-7891)"+sep;	
		}
		
		var mHomePhone = Home1 + Home2 + Home3;
		if(mHomePhone.match(block_phone_test))
		{
			msg+="Invalid or Blocked Primary Home Phone \""+ mHomePhone + "\""+sep;
		}
	}
	
	if (form.Email.value == "") 
	{
		msg+="Please fill out Email"+sep;
	}
	else
	{
		if(!validEmail(form.Email.value))
		{
			msg+="Please fill out Valid Email Format(abc@domain.com)"+sep;	
		}
	}
	
	if (form.Living_From.value == "") 
	{
		msg+="Please fill out how long at this address?"+sep;
	}
	
	if (!(form.Rent_Own[0].checked || form.Rent_Own[1].checked)) 
	{
		msg+="Invalid Primary Residence Type"+sep;
	}
	
/*********/
	if (form.Payment.value == "" || parseInt(form.Payment.value)==0) 
	{
		if(trim(form.Payment.value)!="")
		{
			msg+="Invalid Primary Monthly Payment \""+ form.Payment.value +"\""+sep;
		}
		else
		{
			msg+="Invalid Primary Monthly Payment"+sep;
		}
	}
	else 
	{
		if(!IsNumeric(form.Payment.value))
		{
			msg+="Invalid Primary Monthly Payment \""+ form.Payment.value +"\""+sep;	
		}
	}
	
	if (trim(form.bmonth.value) == "" ) 
	{
		msg+="Please fill out Month"+sep;
	}
	else
	{
		if(!IsNumeric(form.bmonth.value))
		{
			msg+="Please fill out Valid Month"+sep;	
		}
		/*else
		{	
			if(form.bmonth.value<10 && form.bmonth.value.length<2)
				form.bmonth.value="0"+form.bmonth.value;
		}*/
	}
	if (trim(form.byear.value) == "" ) 
	{
		msg+="Please fill out Year"+sep;
	}
	else
	{
		if(!IsNumeric(form.byear.value))
		{
			msg+="Please fill out Valid Year"+sep;	
		}
	}
	if (trim(form.bday.value) == "" ) 
	{
		msg+="Please fill out Day"+sep;
	}
	else
	{
		if(!IsNumeric(form.bday.value))
		{
			msg+="Please fill out Valid Day"+sep;	
		}
		/*else
		{	
			if(form.bday.value<10 && form.bday.value.length<2)
				form.bday.value="0"+form.bday.value;
		}*/
	}
	var dobDate =  form.bmonth.value +"/"+ form.bday.value+"/"+form.byear.value;
	var dobDate1 = new Date(form.byear.value,(parseInt(form.bmonth.value)-1),form.bday.value);
	if(!isDate(dobDate,"MM/dd/yyyy"))
	{
			msg+="Please fill out Valid Date"+sep;
	}
	else
	{
		var	today =	new	Date()
		var crrMonth = today.getMonth();
		crrMonth++;
		if(crrMonth < 10)
			crrMonth = "0" + crrMonth; 
		
		var currDate = crrMonth +"/"+ today.getDate()+"/"+today.getFullYear();
	
		//alert(currDate+"-"+dobDate);
		if(compareDates(currDate, "MM/dd/yyyy", dobDate, "MM/dd/yyyy") == 0)
		{
			msg+="Date of Birth must be less than the Current Date"+sep;
		}
		
		_Diff=(Math.ceil((today.getTime()-dobDate1.getTime())/(one_day)));
		if((_Diff/365)<18)
		{
			msg+="Applicant must be atleast 18 years"+sep;
		}
	}
	
	var SSN = trim(form.ss1.value)+"-"+trim(form.ss2.value)+"-"+trim(form.ss3.value);
	if (SSN.replace(new RegExp( "-", "g" ),"") == "") 
	{
		msg+="Please fill out Social Security"+sep;
	}
	else
	{
		
	 	var strExpression = /^[0-9]{3}-[0-9]{2}-[0-9]{4}$/i; 
   		var kk= strExpression.test(SSN); 
		if(!kk)
		{
			msg+="Please fill out Valid SSN Format(123-45-6789)"+sep;	
		}
	}
	
		
	if (form.Emp_Name.value == "") 
	{
		msg+="Please fill out Employer Name"+sep;
	}
	else
	{
	//	var block_emp_name=new RegExp( arr_block_name, "gi" );;
		if(form.Emp_Name.value.match(block_test))
		{
			msg+="Invalid or Blocked Primary Employer  Name \""+form.Emp_Name.value+"\""+sep;	
		}
	}
	
	if (form.Job_Title.value == "") 
	{
		msg+="Please fill out Job title"+sep;
	}
	else
	{
	//	var block_job_title=new RegExp( arr_block_name , "gi" );;
		if(form.Job_Title.value.match(block_test))
		{
			msg+="Invalid or Blocked Primary Job title \""+form.Job_Title.value+"\""+sep;	
		}
	}
/************/
	if (form.Job_From.value == "") 
	{
		msg+="Please fill out how long with this employer"+sep;
	}

	if (form.Monthly_Income.value == "") 
	{
		msg+="Please fill out Monthly Income"+sep;
	}
	
	var Work1 = trim(form.Work_Phone1.value);
	var Work2 = trim(form.Work_Phone2.value);
	var Work3 = trim(form.Work_Phone3.value);
	var WorkPhone = Work1 + "-" + Work2 + "-" + Work3;

	if (Work1 == "" || Work2 == "" || Work3 == "" || parseInt(Work1)==0  || parseInt(Work2)==0  || parseInt(Work3)==0) 
	{
		msg+="Please fill out Work phone"+sep;
	}
	else
	{
		var strExpression = /^[0-9]{3}-[0-9]{3}-[0-9]{4}$/i; 
   		var kk= strExpression.test(WorkPhone); 
		if(!kk)
		{
			msg+="Please fill out Valid Work Phone(123-456-7891)"+sep;	
		}
		
		var mWorkPhone = Work1 + Work2 + Work3;
		if(mWorkPhone.match(block_phone_test))
		{
			msg+="Invalid or Blocked Primary Work Phone \""+ mWorkPhone + "\""+sep;
		}
	}
	if (form.Bankruptcy[0].checked==false && form.Bankruptcy[1].checked==false) 
	{
		msg+="Please fill out Declared Bankruptcy in the last 7 Years"+sep;
	}

	if (form.CoSign[0].checked==false && form.CoSign[1].checked==false) 
	{
		msg+="Please fill out Cosigner available (If needed)"+sep;
	}

/************/

	if (form.Authorize.value == "") 
	{
		msg+="Invalid Primary Credit Authorization \"False\""+sep;
	}
	else if(form.Authorize[1].checked == false)
	{
		msg+="Invalid Primary Credit Authorization \"False\""+sep;
	}

 	if(form.Forward_Application[1].checked == false)
	{
		msg+="You must select Yes to get a loan in - 'Do you authorize us to forward your application information'"+sep;
	}
	
	if (form.Agreed.checked == false) {
		msg+="Please agree with the privacy policy"+sep;
		//alert( "Please agree with the privacy policy" );
		//form.Agreed.focus();
		//return false;
	}
	
	if (msg.length>0) 
	{
		alert(msg);
		return false;
	} 
	else 
	{ 
		return true; 
	}
}

/******************************************/

  function check_cash_form (form){
	  
	var sep="\n";
	var msg="";
	
	var one_day=1000*60*60*24; 
	//Here we need to split the inputed dates to convert them into standard format
	
	var arr_block_name="none|unemployment";
	var block_test=new RegExp(arr_block_name , "gi" );
		//alert(block_test.test(form.Emp_Name.value));
		//alert(form.Emp_Name.value.search(block_test));

		/****
		// if(form.Emp_Name.value.search(block_test))
		//  OR				
		// if(block_test.test(form.Emp_Name.value))
		****/
	
	var arr_block_phone="1866483|1800829";
	var block_phone_test=new RegExp(arr_block_phone , "gi" );
	
	if(form.License.value=="")
	{
		msg+="Please fill out Driver's Licence"+sep;
	}
	else
	{
		var License=form.License.value;
		var strExpression = /^([0-9A-Za-z]|\-){4,17}$/i; 
   		var kk= strExpression.test(License); 
		if(!kk)
		{
			msg+="Please fill out Valid Driver's Licence"+sep;	
		}
	}
	
	if (form.First_Name.value == "") 
	{
		msg+="Please fill out First name"+sep;
	}
	else
  	{
		if(isAlpha(form.First_Name.value) == false)
		{
			msg+="Please fill out Valid First name"+sep;	
		}
	}
	
	if (form.Last_Name.value == "") 
	{
    	msg+="Please fill out Last name"+sep;
	}
	else
  	{
		if(isAlpha(form.Last_Name.value) == false)
		{
			msg+="Please fill out Valid Last name"+sep;	
		}
	}
	
	if (form.Address.value == "") 
	{
		msg+="Please fill out Address"+sep;
	}
	
	if (form.City.value == "") 
	{
		msg+="Please fill out City"+sep;
	}
	if (form.State.value == "") 
	{
		msg+="Please fill out State"+sep;
	}
	
	var zipCode = form.Zip.value;
	if (form.Zip.value == "") 
	{
		msg+="Please fill out Zip"+sep;
	}
	else
	{
		if(!IsInt(form.Zip.value))
		{
			msg+="Please fill out Valid Zip"+sep;	
		}
		else if(zipCode.length != 5)
		{
			msg+="Zip must be of 5 digits"+sep;	
		}
	}
/*********/
	
	var Home1 = trim(form.Home_Phone1.value);
	var Home2 = trim(form.Home_Phone2.value);
	var Home3 = trim(form.Home_Phone3.value);
	var HomePhone = Home1 + "-" + Home2 + "-" + Home3;
					
	if (Home1 == "" || Home2 == "" || Home3 == "") 
	{
		msg+="Please fill out Home phone"+sep;
	}
	else
	{
		var strExpression = /^[0-9]{3}-[0-9]{3}-[0-9]{4}$/i; 
   		var kk= strExpression.test(HomePhone); 
		if(!kk)
		{
			msg+="Please fill out Valid Home Phone(123-456-7891)"+sep;	
		}
	}
	
	var Work1 = trim(form.Work_Phone1.value);
	var Work2 = trim(form.Work_Phone2.value);
	var Work3 = trim(form.Work_Phone3.value);
	var WorkPhone = Work1 + "-" + Work2 + "-" + Work3;
					;
	if (Work1 == "" || Work2 == "" || Work3 == "") 
	{
		msg+="Please fill out Work phone"+sep;
	}
	else
	{
		var strExpression = /^[0-9]{3}-[0-9]{3}-[0-9]{4}$/i; 
   		var kk= strExpression.test(WorkPhone); 
		if(!kk)
		{
			msg+="Please fill out Valid Work Phone(123-456-7891)"+sep;	
		}
		
	}
	
	if (form.Email.value == "") 
	{
		msg+="Please fill out Email"+sep;
	}
	else
	{
		if(!validEmail(form.Email.value))
		{
			msg+="Please fill out Valid Email Format(abc@domain.com)"+sep;	
		}
	}
	
	if (trim(form.bmonth.value) == "" ) 
	{
		msg+="Please fill out Month"+sep;
	}
	else
	{
		if(!IsNumeric(form.bmonth.value))
		{
			msg+="Please fill out Valid Month"+sep;	
		}
		/*else
		{	
			if(form.bmonth.value<10 && form.bmonth.value.length<2)
				form.bmonth.value="0"+form.bmonth.value;
		}*/
	}
	if (trim(form.byear.value) == "" ) 
	{
		msg+="Please fill out Year"+sep;
	}
	else
	{
		if(!IsNumeric(form.byear.value))
		{
			msg+="Please fill out Valid Year"+sep;	
		}
	}
	if (trim(form.bday.value) == "" ) 
	{
		msg+="Please fill out Day"+sep;
	}
	else
	{
		if(!IsNumeric(form.bday.value))
		{
			msg+="Please fill out Valid Day"+sep;	
		}
		/*else
		{	
			if(form.bday.value<10 && form.bday.value.length<2)
				form.bday.value="0"+form.bday.value;
		}*/
	}
		
	var dobDate =  form.bmonth.value +"/"+ form.bday.value+"/"+form.byear.value;
	var dobDate1 = new Date(form.byear.value,(parseInt(form.bmonth.value)-1),form.bday.value);
	if(!isDate(dobDate,"MM/dd/yyyy"))
	{
			msg+="Please fill out Valid Date"+sep;
	}
	else
	{
		var	today =	new	Date()
		var crrMonth = today.getMonth();
		crrMonth++;
		if(crrMonth < 10)
			crrMonth = "0" + crrMonth; 
		
		var currDate = crrMonth +"/"+ today.getDate()+"/"+today.getFullYear();
	
		//alert(currDate+"-"+dobDate);
		if(compareDates(currDate, "MM/dd/yyyy", dobDate, "MM/dd/yyyy") == 0)
		{
			msg+="Date of Birth must be less than the Current Date"+sep;
		}
		
		_Diff=(Math.ceil((today.getTime()-dobDate1.getTime())/(one_day)));
		if((_Diff/365)<18)
		{
			msg+="Applicant must be atleast 18 years"+sep;
		}
	}
	
	var SSN = trim(form.ss1.value)+"-"+trim(form.ss2.value)+"-"+trim(form.ss3.value);
	if (SSN.replace(new RegExp( "-", "g" ),"") == "") 
	{
		msg+="Please fill out Social Security"+sep;
	}
	else
	{
	 	var strExpression = /^[0-9]{3}-[0-9]{2}-[0-9]{4}$/i; 
   		var kk= strExpression.test(SSN); 
		if(!kk)
		{
			msg+="Please fill out Valid SSN Format(123-45-6789)"+sep;	
		}
	}
	
		
	if (form.REF_FNAME1.value == "") 
	{
		msg+="Please fill First Name for Personal Reference 1?"+sep;
	}
	else
  	{
		if(isAlpha(form.REF_FNAME1.value) == false)
		{
			msg+="Please fill out Valid First Name for Personal Reference 1?"+sep;	
		}
	}
	
	if (form.REF_LNAME1.value == "") 
	{
		msg+="Please fill Last Name for Personal Reference 1?"+sep;
	}
	else
  	{
		if(isAlpha(form.REF_LNAME1.value) == false)
		{
			msg+="Please fill out Valid Last Name for Personal Reference 1"+sep;	
		}
	}
	
	if (form.REF_RELATIONSHIP1.value == "") 
	{
		msg+="Please fill Reference RELATIONSHIP for Personal Reference 1?"+sep;
	}
	
	var Ref1Phone1 = trim(form.Ref1Phone1.value);
	var Ref1Phone2 = trim(form.Ref1Phone2.value);
	var Ref1Phone3 = trim(form.Ref1Phone3.value);
	var Ref1Phone = Ref1Phone1 + "-" + Ref1Phone2 + "-" + Ref1Phone3;
					
	if (Ref1Phone1 == "" || Ref1Phone2 == "" || Ref1Phone3 == "") 
	{
		msg+="Please fill out Reference Phone For Personal Reference 1"+sep;
	}
	else
	{
		var strExpression = /^[0-9]{3}-[0-9]{3}-[0-9]{4}$/i; 
   		var kk= strExpression.test(Ref1Phone); 
		if(!kk)
		{
			msg+="Please fill out Valid Reference Phone(123-456-7891) For Personal Reference 1"+sep;	
		}
	}
	
	if (trim(form.REF_FNAME2.value)!= "") 
	{
		if(isAlpha(form.REF_FNAME2.value) == false)
		{
			msg+="Please fill out Valid First Name for Personal Reference 2?"+sep;	
		}
	}
	
	if (trim(form.REF_LNAME2.value)!= "") 
	{
		if(isAlpha(form.REF_LNAME2.value) == false)
		{
			msg+="Please fill out Valid Last Name for Personal Reference 2"+sep;	
		}
	}
	
	var Ref2Phone1 = trim(form.Ref2Phone1.value);
	var Ref2Phone2 = trim(form.Ref2Phone2.value);
	var Ref2Phone3 = trim(form.Ref2Phone3.value);
	var Ref2Phone = Ref2Phone1 + "-" + Ref2Phone2 + "-" + Ref2Phone3;
				
	if (Ref2Phone1=="" || Ref2Phone2=="" || Ref2Phone3=="") 
	{
	}
	else
	{
		var strExpression = /^[0-9]{3}-[0-9]{3}-[0-9]{4}$/i; 
   		var kk= strExpression.test(Ref2Phone); 
		if(!kk)
		{
			msg+="Please fill out Valid Reference Phone(123-456-7891) For Personal Reference 2"+sep;	
		}
	}
// -----------------------------------
	
	var NEXT_PAY_DATE =  form.NEXT_PAY_DATE_m.value +"/"+ form.NEXT_PAY_DATE_d.value+"/"+form.NEXT_PAY_DATE_y.value;
	
if (trim(form.NEXT_PAY_DATE_m.value) == "" || form.NEXT_PAY_DATE_m.value == "0") 
	{
		msg+="Please fill out Month for Next Pay Date"+sep;
	}
	else
	{
		if(!IsNumeric(form.NEXT_PAY_DATE_m.value))
		{
			msg+="Please fill out Valid Month for Next Pay Date"+sep;	
		}
	}
	if (trim(form.NEXT_PAY_DATE_y.value) == "" ||  form.NEXT_PAY_DATE_y.value == "0") 
	{
		msg+="Please fill out Year for Next Pay Date"+sep;
	}
	else
	{
		if(!IsNumeric(form.NEXT_PAY_DATE_y.value))
		{
			msg+="Please fill out Valid Year for Next Pay Date"+sep;	
		}
	}
	if (trim(form.NEXT_PAY_DATE_d.value) == "" || form.NEXT_PAY_DATE_d.value == "0") 
	{
		msg+="Please fill out Day for Next Pay Date"+sep;
	}
	else
	{
		if(!IsNumeric(form.NEXT_PAY_DATE_d.value))
		{
			msg+="Please fill out Valid Day for Next Pay Date"+sep;	
		}
	}
	if(!isDate(NEXT_PAY_DATE,"MM/dd/yyyy"))
	{
			msg+="Please fill out Valid Date for Next Pay Date"+sep;
	}
	else
	{
		var	today =	new	Date()
		var crrMonth = today.getMonth();
		crrMonth++;
		if(crrMonth < 10)
			crrMonth = "0" + crrMonth; 
		
		var currDate = crrMonth +"/"+ today.getDate()+"/"+today.getFullYear();
	
		//alert(currDate+"-"+dobDate);
		if(compareDates(currDate, "MM/dd/yyyy", NEXT_PAY_DATE, "MM/dd/yyyy") == 1 || currDate==NEXT_PAY_DATE)
		{
			msg+="NEXT PAY DATE must be Greater than the Current Date"+sep;
		}
	}
	
// -----------------------------------
// -----------------------------------

if (trim(form.NEXT_AFTER_NEXT_PAY_DATE_m.value) == "" || form.NEXT_AFTER_NEXT_PAY_DATE_m.value == "0") 
	{
		msg+="Please fill out Month for 2nd Pay Date"+sep;
	}
	else
	{
		if(!IsNumeric(form.NEXT_AFTER_NEXT_PAY_DATE_m.value))
		{
			msg+="Please fill out Valid Month for 2nd Pay Date"+sep;	
		}
	}
	if (trim(form.NEXT_AFTER_NEXT_PAY_DATE_y.value) == "" ||  form.NEXT_AFTER_NEXT_PAY_DATE_y.value == "0") 
	{
		msg+="Please fill out Year for 2nd Pay Date"+sep;
	}
	else
	{
		if(!IsNumeric(form.NEXT_AFTER_NEXT_PAY_DATE_y.value))
		{
			msg+="Please fill out Valid Year for 2nd Pay Date"+sep;	
		}
	}
	if (trim(form.NEXT_AFTER_NEXT_PAY_DATE_d.value) == "" || form.NEXT_AFTER_NEXT_PAY_DATE_d.value == "0") 
	{
		msg+="Please fill out Day for 2nd Pay Date"+sep;
	}
	else
	{
		if(!IsNumeric(form.NEXT_AFTER_NEXT_PAY_DATE_d.value))
		{
			msg+="Please fill out Valid Day for 2nd Pay Date"+sep;	
		}
	}
	var NEXT_AFTER_NEXT_PAY_DATE =  form.NEXT_AFTER_NEXT_PAY_DATE_m.value +"/"+ form.NEXT_AFTER_NEXT_PAY_DATE_d.value+"/"+form.NEXT_AFTER_NEXT_PAY_DATE_y.value;
	
	if(!isDate(NEXT_AFTER_NEXT_PAY_DATE,"MM/dd/yyyy"))
	{
			msg+="Please fill out Valid Date for 2nd Pay Date"+sep;
	}
	else
	{
		var	today =	new	Date()
		var crrMonth = today.getMonth();
		crrMonth++;
		if(crrMonth < 10)
			crrMonth = "0" + crrMonth; 
		
		var currDate = crrMonth +"/"+ today.getDate()+"/"+today.getFullYear();
	
		//   1 if date1 is greater than date2
		//   0 if date2 is greater than date1 of if they are the same
		//  -1 if either of the dates is in an invalid format
		//alert(currDate+"-"+dobDate);
		if(compareDates(currDate, "MM/dd/yyyy", NEXT_AFTER_NEXT_PAY_DATE, "MM/dd/yyyy") == 1 || currDate==NEXT_AFTER_NEXT_PAY_DATE)
		{
			msg+="2nd PAY DATE must be Greater than the Current Date"+sep;
		}

		if(compareDates(NEXT_PAY_DATE, "MM/dd/yyyy", NEXT_AFTER_NEXT_PAY_DATE, "MM/dd/yyyy") ==1 || NEXT_PAY_DATE==NEXT_AFTER_NEXT_PAY_DATE)
		{
			msg+="2nd PAY DATE must be Greater than the NEXT PAY DATE"+sep;
		}
	}
	
// -----------------------------------	
	
	
	if (form.MonthlyIncome.value == "") 
	{
		msg+="Please fill out Monthly Income"+sep;
	}

/*********/
	if (form.NEXT_AFTER_NEXT_PAY_DATE_y.value == "") 
	{
		msg+="Please fill out Monthly Payment"+sep;
	}
	else 
	{
		if(!IsNumeric(form.NEXT_AFTER_NEXT_PAY_DATE_y.value))
		{
			msg+="Please fill out NEXT AFTER NEXT PAY DATE Year"+sep;	
		}
	}
	
	
	if (form.BankName.value == "") 
	{
		msg+="Please fill out Bank Name"+sep;
	}
/************/
	var appl_bank_phone1 = trim(form.appl_bank_phone1.value);
	var appl_bank_phone2 = trim(form.appl_bank_phone2.value);
	var appl_bank_phone3 = trim(form.appl_bank_phone3.value);
	var appl_bank_phone = appl_bank_phone1 + "-" + appl_bank_phone2 + "-" + appl_bank_phone3;
					
	if (appl_bank_phone1 == "" || appl_bank_phone2 == "" || appl_bank_phone3 == "") 
	{
		msg+="Please fill out bank phone"+sep;
	}
	else
	{
		var strExpression = /^[0-9]{3}-[0-9]{3}-[0-9]{4}$/i; 
   		var kk= strExpression.test(appl_bank_phone); 
		if(!kk)
		{
			msg+="Please fill out Valid Bank Phone(123-456-7891)"+sep;	
		}
	}

	if (form.checking_account.value=="undefined" || form.checking_account.value == "") 
	{
		msg+="Please fill out Monthly Income"+sep;
	}
	
	if (form.appl_bank_len_yr.value == "") 
	{
		msg+="Please fill out HOW LONG HAVE YOU HAD THE BANK ACCOUNT YEAR ?"+sep;
	}
	if (form.appl_bank_len_mo.value == "") 
	{
		msg+="Please fill out HOW LONG HAVE YOU HAD THE BANK ACCOUNT Month ?"+sep;
	}
	if (form.RoutingNumber.value == "") 
	{
		msg+="Please fill out Routing Number ?"+sep;
	}
	else
	{
		var RoutingNumber=form.RoutingNumber.value;
		var strExpression = /^[0-9]{9}$/i; 
   		var kk= strExpression.test(RoutingNumber); 
		if(!kk)
		{
			msg+="Please fill out Valid Routing Number"+sep;	
		}
		else
		{
			var Sum = 3*(parseInt(RoutingNumber.substring(0,1)) + parseInt(RoutingNumber.substring(3,4)) + parseInt(RoutingNumber.substring(6,7)));
			Sum =Sum+(7*(parseInt(RoutingNumber.substring(1,2)) + parseInt(RoutingNumber.substring(4,5)) + parseInt(RoutingNumber.substring(7,8))));
			Sum =Sum+(1*(parseInt(RoutingNumber.substring(2,3)) + parseInt(RoutingNumber.substring(6,7)) + parseInt(RoutingNumber.substring(8,9))));
			
			if((Sum%10)!=0)
			{
				msg+="Please fill out Valid Routing Number"+sep;
			}
		}
	}
	
	if (form.BankAccountNumber.value == "") 
	{
		msg+="Please fill out Bank Account Number ?"+sep;
	}
	else
	{
		var BankAccountNumber=form.BankAccountNumber.value;
		var strExpression = /^[0-9]{5,30}$/i; 
   		var kk= strExpression.test(BankAccountNumber); 
		if(!kk)
		{
			msg+="Please fill out Valid Bank Account Number"+sep;	
		}
	}
	
	if (form.Employer.value == "") 
	{
		msg+="Please fill out Employer"+sep;
	}
	else
  	{
		if(isAlpha(form.Employer.value) == false)
		{
			msg+="Please fill out Valid Employer?"+sep;	
		}
	}
	
	if (form.Occupation.value == "") 
	{
		msg+="Please fill out Occupation"+sep;
	}
	
	if (form.SupervisorName.value == "") 
	{
		msg+="Please fill out Supervisor"+sep;
	}
	else
  	{
		if(isAlpha(form.SupervisorName.value) == false)
		{
			msg+="Please fill out Valid Supervisor?"+sep;	
		}
	}
	
	if (form.active_military.value == "") 
	{
		msg+="Please fill out Active Military"+sep;
	}
	
	var SupervisorPhone1 = trim(form.SupervisorPhone1.value);
	var SupervisorPhone2 = trim(form.SupervisorPhone2.value);
	var SupervisorPhone3 = trim(form.SupervisorPhone3.value);
	var SupervisorPhone = SupervisorPhone1 + "-" + SupervisorPhone2 + "-" + SupervisorPhone3;
					
	if (SupervisorPhone1 == "" || SupervisorPhone2 == "" || SupervisorPhone3 == "") 
	{
		msg+="Please fill out Employer's phone"+sep;
	}
	else
	{
		var strExpression = /^[0-9]{3}-[0-9]{3}-[0-9]{4}$/i; 
   		var kk= strExpression.test(SupervisorPhone); 
		if(!kk)
		{
			msg+="Please fill out Valid Employer's Phone(123-456-7891)"+sep;	
		}
	}
	
	// --
	if (form.appl_emp_addr1.value == "") 
	{
		msg+="Please fill out Employer's Address"+sep;
	}
	
	if (form.appl_emp_city.value == "") 
	{
		msg+="Please fill out Employer City"+sep;
	}
	
	if (form.appl_emp_state.value == "") 
	{
		msg+="Please fill out Employer State"+sep;
	}
	
	var ezipCode = form.appl_emp_zip.value;
	
	if (form.appl_emp_zip.value == "") 
	{
		msg+="Please fill out Employer Zip"+sep;
	}
	else
	{
		if(!IsInt(form.appl_emp_zip.value))
		{
			msg+="Please fill out Valid Employer Zip"+sep;	
		}
		else if(ezipCode.length != 5)
		{
			msg+="Employer Zip must be of 5 digits"+sep;	
		}
	}

	if (msg.length>0) 
	{
		alert(msg);
		return false;
	} 
	else 
	{ 
		return true; 
	}
}

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

function IsNumeric(sText)
{
   var ValidChars = "0123456789.";
   var IsNumber=true;
   var Char;
   if(sText != "")
   {
	   for (i = 0; i < sText.length && IsNumber == true; i++) 
	   { 
		  Char = sText.charAt(i); 
		  if (ValidChars.indexOf(Char) == -1) 
		  {
			 IsNumber = false;
		  }
	   }
   }
   return IsNumber;
}
function IsInt(sText)
{
	//alert(sText);
   var ValidChars = "0123456789";
   var IsInt=true;
   var Char;
  
   if(sText != "")
   {
	   for (i = 0; i < sText.length && IsInt == true; i++) 
	   { 
		  Char = sText.charAt(i); 
		  if (ValidChars.indexOf(Char) == -1) 
		  {
			 IsInt = false;
		  }
	   }
   }
   return IsInt;
}
function validEmail(strEmail)
{	//var strExpression = /^[a-z][a-z_0-9\.]+@[a-z_0-9\.]+$/i;
	
	//return strExpression.test(strEmail);
	if (strEmail.search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) != -1)
		return true;
	else
		return false;

}

function isAlphaNumeric(strText) 
{ 
   var strExpression = /^[a-z][a-z_0-9]{0,}$/i; 
   return strExpression.test(strText); 
}

function isAlpha(strText) 
{ 
   var strExpression = /^[a-z][a-z_A-Z]{0,}$/i; 
   return strExpression.test(strText); 
}

function isAlphaSpace(strText) 
{ 
   var strExpression = /^[a-z][a-z_A-Z_ ]{0,}$/i; 
   return strExpression.test(strText); 
}

// ===================================================================
// Author: Matt Kruse <matt@mattkruse.com>
// WWW: http://www.mattkruse.com/
//
// NOTICE: You may use this code for any purpose, commercial or
// private, without any further permission from the author. You may
// remove this notice from your final code if you wish, however it is
// appreciated by the author if at least my web site address is kept.
//
// You may *NOT* re-distribute this code in any way except through its
// use. That means, you can include it in your product, or your web
// site, or any other form where the code is actually being used. You
// may not put the plain javascript up on your site for download or
// include it in your javascript libraries for download. 
// If you wish to share this code with others, please just point them
// to the URL instead.
// Please DO NOT link directly to my .js files from your site. Copy
// the files to your server and use them there. Thank you.
// ===================================================================

// HISTORY
// ------------------------------------------------------------------
// May 17, 2003: Fixed bug in parseDate() for dates <1970
// March 11, 2003: Added parseDate() function
// March 11, 2003: Added "NNN" formatting option. Doesn't match up
//                 perfectly with SimpleDateFormat formats, but 
//                 backwards-compatability was required.

// ------------------------------------------------------------------
// These functions use the same 'format' strings as the 
// java.text.SimpleDateFormat class, with minor exceptions.
// The format string consists of the following abbreviations:
// 
// Field        | Full Form          | Short Form
// -------------+--------------------+-----------------------
// Year         | yyyy (4 digits)    | yy (2 digits), y (2 or 4 digits)
// Month        | MMM (name or abbr.)| MM (2 digits), M (1 or 2 digits)
//              | NNN (abbr.)        |
// Day of Month | dd (2 digits)      | d (1 or 2 digits)
// Day of Week  | EE (name)          | E (abbr)
// Hour (1-12)  | hh (2 digits)      | h (1 or 2 digits)
// Hour (0-23)  | HH (2 digits)      | H (1 or 2 digits)
// Hour (0-11)  | KK (2 digits)      | K (1 or 2 digits)
// Hour (1-24)  | kk (2 digits)      | k (1 or 2 digits)
// Minute       | mm (2 digits)      | m (1 or 2 digits)
// Second       | ss (2 digits)      | s (1 or 2 digits)
// AM/PM        | a                  |
//
// NOTE THE DIFFERENCE BETWEEN MM and mm! Month=MM, not mm!
// Examples:
//  "MMM d, y" matches: January 01, 2000
//                      Dec 1, 1900
//                      Nov 20, 00
//  "M/d/yy"   matches: 01/20/00
//                      9/2/00
//  "MMM dd, yyyy hh:mm:ssa" matches: "January 01, 2000 12:30:45AM"
// ------------------------------------------------------------------

var MONTH_NAMES=new Array('January','February','March','April','May','June','July','August','September','October','November','December','Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec');
var DAY_NAMES=new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sun','Mon','Tue','Wed','Thu','Fri','Sat');
function LZ(x) {return(x<0||x>9?"":"0")+x}

// ------------------------------------------------------------------
// isDate ( date_string, format_string )
// Returns true if date string matches format of format string and
// is a valid date. Else returns false.
// It is recommended that you trim whitespace around the value before
// passing it to this function, as whitespace is NOT ignored!
// ------------------------------------------------------------------
function isDate(val,format) {
	var date=getDateFromFormat(val,format);
	if (date==0) { return false; }
	return true;
	}

// -------------------------------------------------------------------
// compareDates(date1,date1format,date2,date2format)
//   Compare two date strings to see which is greater.
//   Returns:
//   1 if date1 is greater than date2
//   0 if date2 is greater than date1 of if they are the same
//  -1 if either of the dates is in an invalid format
// -------------------------------------------------------------------
function compareDates(date1,dateformat1,date2,dateformat2) {
	var d1=getDateFromFormat(date1,dateformat1);
	var d2=getDateFromFormat(date2,dateformat2);
	if (d1==0 || d2==0) {
		return -1;
		}
	else if (d1 > d2) {
		return 1;
		}
	return 0;
	}

// ------------------------------------------------------------------
// formatDate (date_object, format)
// Returns a date in the output format specified.
// The format string uses the same abbreviations as in getDateFromFormat()
// ------------------------------------------------------------------
function formatDate(date,format) {
	format=format+"";
	var result="";
	var i_format=0;
	var c="";
	var token="";
	var y=date.getYear()+"";
	var M=date.getMonth()+1;
	var d=date.getDate();
	var E=date.getDay();
	var H=date.getHours();
	var m=date.getMinutes();
	var s=date.getSeconds();
	var yyyy,yy,MMM,MM,dd,hh,h,mm,ss,ampm,HH,H,KK,K,kk,k;
value["dd"]=LZ(d);
	value["E"]=DAY_NAMES[E+7];
	value["EE"]=DAY_NAMES[E];
	value["H"]=H;
	value["HH"]=LZ(H);
	if (H==0){value["h"]=12;}
	else if (H>12){value["h"]=H-12;}
	else {value["h"]=H;}
	value["hh"]=LZ(value["h"]);
	if (H>11){value["K"]=H-12;} else {value["K"]=H;}
	value["k"]=H+1;
	value["KK"]=LZ(value["K"]);
	value["kk"]=LZ(value["k"]);
	if (H > 11) { value["a"]="PM"; }
	else { value["a"]="AM"; }
	value["m"]=m;
	value["mm"]=LZ(m);
	value["s"]=s;
	value["ss"]=LZ(s);
	while (i_format < format.length) {
		c=format.charAt(i_format);
		token="";
		while ((format.charAt(i_format)==c) && (i_format < format.length)) {
			token += format.charAt(i_format++);
			}
		if (value[token] != null) { result=result + value[token]; }
		else { result=result + token; }
		}
	return result;
	}
	
// ------------------------------------------------------------------
// Utility functions for parsing in getDateFromFormat()
// ------------------------------------------------------------------
function _isInteger(val) {
	var digits="1234567890";
	for (var i=0; i < val.length; i++) {
		if (digits.indexOf(val.charAt(i))==-1) { return false; }
		}
	return true;
	}
function _getInt(str,i,minlength,maxlength) {
	for (var x=maxlength; x>=minlength; x--) {
		var token=str.substring(i,i+x);
		if (token.length < minlength) { return null; }
		if (_isInteger(token)) { return token; }
		}
	return null;
	}
	
// ------------------------------------------------------------------
// getDateFromFormat( date_string , format_string )
//
// This function takes a date string and a format string. It matches
// If the date string matches the format string, it returns the 
// getTime() of the date. If it does not match, it returns 0.
// ------------------------------------------------------------------
function getDateFromFormat(val,format) {
	val=val+"";
	format=format+"";
	var i_val=0;
	var i_format=0;
	var c="";
	var token="";
	var token2="";
	var x,y;
	var now=new Date();
	var year=now.getYear();
	var month=now.getMonth()+1;
	var date=1;
	var hh=now.getHours();
	var mm=now.getMinutes();
	var ss=now.getSeconds();
	var ampm="";
	
	while (i_format < format.length) {
		// Get next token from format string
		c=format.charAt(i_format);
		token="";
		while ((format.charAt(i_format)==c) && (i_format < format.length)) {
			token += format.charAt(i_format++);
			}
		// Extract contents of value based on format token
		if (token=="yyyy" || token=="yy" || token=="y") {
			if (token=="yyyy") { x=4;y=4; }
			if (token=="yy")   { x=2;y=2; }
			if (token=="y")    { x=2;y=4; }
			year=_getInt(val,i_val,x,y);
			if (year==null) { return 0; }
			i_val += year.length;
			if (year.length==2) {
				if (year > 70) { year=1900+(year-0); }
				else { year=2000+(year-0); }
				}
			}
		else if (token=="MMM"||token=="NNN"){
			month=0;
			for (var i=0; i<MONTH_NAMES.length; i++) {
				var month_name=MONTH_NAMES[i];
				if (val.substring(i_val,i_val+month_name.length).toLowerCase()==month_name.toLowerCase()) {
					if (token=="MMM"||(token=="NNN"&&i>11)) {
						month=i+1;
						if (month>12) { month -= 12; }
						i_val += month_name.length;
						break;
						}
					}
				}
			if ((month < 1)||(month>12)){return 0;}
			}
		else if (token=="EE"||token=="E"){
			for (var i=0; i<DAY_NAMES.length; i++) {
				var day_name=DAY_NAMES[i];
				if (val.substring(i_val,i_val+day_name.length).toLowerCase()==day_name.toLowerCase()) {
					i_val += day_name.length;
					break;
					}
				}
			}
		else if (token=="MM"||token=="M") {
			month=_getInt(val,i_val,token.length,2);
			if(month==null||(month<1)||(month>12)){return 0;}
			i_val+=month.length;}
		else if (token=="dd"||token=="d") {
			date=_getInt(val,i_val,token.length,2);
			if(date==null||(date<1)||(date>31)){return 0;}
			i_val+=date.length;}
		else if (token=="hh"||token=="h") {
			hh=_getInt(val,i_val,token.length,2);
			if(hh==null||(hh<1)||(hh>12)){return 0;}
			i_val+=hh.length;}
		else if (token=="HH"||token=="H") {
			hh=_getInt(val,i_val,token.length,2);
			if(hh==null||(hh<0)||(hh>23)){return 0;}
			i_val+=hh.length;}
		else if (token=="KK"||token=="K") {
			hh=_getInt(val,i_val,token.length,2);
			if(hh==null||(hh<0)||(hh>11)){return 0;}
			i_val+=hh.length;}
		else if (token=="kk"||token=="k") {
			hh=_getInt(val,i_val,token.length,2);
			if(hh==null||(hh<1)||(hh>24)){return 0;}
			i_val+=hh.length;hh--;}
		else if (token=="mm"||token=="m") {
			mm=_getInt(val,i_val,token.length,2);
			if(mm==null||(mm<0)||(mm>59)){return 0;}
			i_val+=mm.length;}
		else if (token=="ss"||token=="s") {
			ss=_getInt(val,i_val,token.length,2);
			if(ss==null||(ss<0)||(ss>59)){return 0;}
			i_val+=ss.length;}
		else if (token=="a") {
			if (val.substring(i_val,i_val+2).toLowerCase()=="am") {ampm="AM";}
			else if (val.substring(i_val,i_val+2).toLowerCase()=="pm") {ampm="PM";}
			else {return 0;}
			i_val+=2;}
		else {
			if (val.substring(i_val,i_val+token.length)!=token) {return 0;}
			else {i_val+=token.length;}
			}
		}
	// If there are any trailing characters left in the value, it doesn't match
	if (i_val != val.length) { return 0; }
	// Is date valid for month?
	if (month==2) {
		// Check for leap year
		if ( ( (year%4==0)&&(year%100 != 0) ) || (year%400==0) ) { // leap year
			if (date > 29){ return 0; }
			}
		else { if (date > 28) { return 0; } }
		}
	if ((month==4)||(month==6)||(month==9)||(month==11)) {
		if (date > 30) { return 0; }
		}
	// Correct hours value
	if (hh<12 && ampm=="PM") { hh=hh-0+12; }
	else if (hh>11 && ampm=="AM") { hh-=12; }
	var newdate=new Date(year,month-1,date,hh,mm,ss);
	return newdate.getTime();
	}

// ------------------------------------------------------------------
// parseDate( date_string [, prefer_euro_format] )
//
// This function takes a date string and tries to match it to a
// number of possible date formats to get the value. It will try to
// match against the following international formats, in this order:
// y-M-d   MMM d, y   MMM d,y   y-MMM-d   d-MMM-y  MMM d
// M/d/y   M-d-y      M.d.y     MMM-d     M/d      M-d
// d/M/y   d-M-y      d.M.y     d-MMM     d/M      d-M
// A second argument may be passed to instruct the method to search
// for formats like d/M/y (european format) before M/d/y (American).
// Returns a Date object or null if no patterns match.
// ------------------------------------------------------------------
function parseDate(val) {
	var preferEuro=(arguments.length==2)?arguments[1]:false;
	generalFormats=new Array('y-M-d','MMM d, y','MMM d,y','y-MMM-d','d-MMM-y','MMM d');
	monthFirst=new Array('M/d/y','M-d-y','M.d.y','MMM-d','M/d','M-d');
	dateFirst =new Array('d/M/y','d-M-y','d.M.y','d-MMM','d/M','d-M');
	var checkList=new Array('generalFormats',preferEuro?'dateFirst':'monthFirst',preferEuro?'monthFirst':'dateFirst');
	var d=null;
	for (var i=0; i<checkList.length; i++) {
		var l=window[checkList[i]];
		for (var j=0; j<l.length; j++) {
			d=getDateFromFormat(val,l[j]);
			if (d!=0) { return new Date(d); }
			}
		}
	return null;
	}

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

  function toggle_it(itemID){
      // Toggle visibility between none and inline
      if ((document.getElementById(itemID).style.display == 'none'))
      {
        document.getElementById(itemID).style.display = 'inline';
      } else if ((document.getElementById("Debt_amount").options[document.getElementById("Debt_amount").selectedIndex].text) == "0"){
		document.getElementById("more_info").options[0].selected="selected";
        document.getElementById(itemID).style.display = 'none';
      }
  }
  
  function reset_bankruptcy_data(){
  		if ((document.getElementById("bankruptcy").options[document.getElementById("bankruptcy").selectedIndex].text) == "--"){
  			document.getElementById("Bankruptcy_date_month").options[0].selected="selected";
			document.getElementById("Bankruptcy_date_year").options[0].selected="selected";
		}
  		if ((document.getElementById("bankruptcy").options[document.getElementById("bankruptcy").selectedIndex].text) == "No"){
  			document.getElementById("Bankruptcy_date_month").options[0].selected="selected";
			document.getElementById("Bankruptcy_date_year").options[0].selected="selected";
		}		
  }
  function toggle_it1(itemID){
      // Toggle visibility between none and inline
      if ((document.getElementById(itemID).style.display == 'none'))
      {
        document.getElementById(itemID).style.display = 'inline';
      } else {
        document.getElementById(itemID).style.display = 'none';
      }
  } 
  
function check_form (form)
{
	// check moneyforwheel form
	
	//var Power_sport_typeObj = form.Power_sport_type;
	//var txtTextObj = document.getElementById('txtText');

	form._Power_sport_type.value  = form.Power_sport_type.options[form.Power_sport_type.selectedIndex].text;	
	form._Power_sport_make.value  = form.Power_sport_make.options[form.Power_sport_make.selectedIndex].text;	
	form._Power_sport_model.value = form.Power_sport_model.options[form.Power_sport_model.selectedIndex].text;	
	

	if (form.first_name.value == "") {
    alert( "Please fill out First name" );
    form.first_name.focus();
    return false ;
	}
	else if (form.last_name.value == "") {
    alert( "Please fill out Last name" );
    form.last_name.focus();
    return false ;
	}
	else if (form.Maiden_name.value == "") {
    alert( "Please fill out maiden name" );
    form.Maiden_name.focus();
    return false ;
	}	
		else if (form.s1.value == "") {
    alert( "Please fill out Social Security" );
    form.s1.focus();
    return false ;
	}
		else if (form.s2.value == "") {
    alert( "Please fill out Social Security" );
    form.s2.focus();
    return false ;
	}	
		else if (form.s3.value == "") {
    alert( "Please fill out Social Security" );
    form.s3.focus();
    return false ;
	}
		else if (form.employer_name.value == "") {
    alert( "Please fill out Employer" );
    form.employer_name.focus();
    return false ;
	}	
		else if (form.email.value == "") {
    alert( "Please fill out Email" );
    form.email.focus();
    return false ;
	}
		else if (form.address.value == "") {
    alert( "Please fill out Address" );
    form.address.focus();
    return false ;
	}
		else if (form.city.value == "") {
    alert( "Please fill out City" );
    form.city.focus();
    return false ;
	}
		else if (form.state.value == "") {
    alert( "Please fill out State" );
    form.state.focus();
    return false ;
	}
		else if (aForm.Power_sport_type.value == "") {
		//document.all.ResidenceCost.innerHTML="Enter Valid numbers";
	alert("please select any Power sport type");
	form.Power_sport_type.focus();
	return false ;		
	}
		else if (aForm.Power_sport_make.value == "") {
		//document.all.ResidenceCost.innerHTML="Enter Valid numbers";
	alert("please select any Power sport make");
	form.Power_sport_make.focus();
	return false ;
	}
	else if (aForm.Power_sport_model.value == "") {
		//document.all.ResidenceCost.innerHTML="Enter Valid numbers";
	alert("please select any Power sport model");
	form.Power_sport_model.focus();
	return false ;
	}

		else if (form.zip.value == "") {
    alert( "Please fill out Zip" );
    form.zip.focus();
    return false ;
	}
		else if (form.monthly_income.value == "") {
    alert( "Please fill out Monthly Income" );
    form.monthly_income.focus();
    return false ;
	}	
		else if (form.LoanAmount.value == "") {
    alert( "Please fill out Monthly Income" );
    form.LoanAmount.focus();
    return false ;
	}		

/*********/
		else if (form.home_phone1.value == "") {
    alert( "Please fill out Home phone" );
    form.home_phone1.focus();
    return false ;
	}
		else if (form.home_phone2.value == "") {
    alert( "Please fill out Home phone" );
    form.home_phone2.focus();
    return false ;
	}
		else if (form.home_phone3.value == "") {
    alert( "Please fill out Home phone" );
    form.home_phone3.focus();
    return false ;
	}
		else if (form.ResidenceCost.value == "") {
    alert( "Please fill out Monthly Income" );
    form.ResidenceCost.focus();
    return false ;
	}		
		else if (form.living_from_years.value == "") {
    alert( "Please fill out how long at this address?" );
    form.living_from_years.focus();
    return false ;
	}
		else if (form.living_from_months.value == "") {
    alert( "Please fill out how long at this address?" );
    form.living_from_months.focus();
    return false ;
	}	
		else if (form.rent_Own.value == "") {
    alert( "Please fill out Rent or Own" );
    form.rent_Own.focus();
    return false ;
	}
/*********/
		else if (form.ResidenceCost.value == "") {
    alert( "Please fill out Monthly Payment" );
    form.ResidenceCost.focus();
    return false ;
	}
		else if (form.bday.value == "") {
    alert( "Please fill out Date of Birth" );
    form.bday.focus();
    return false ;
	}
	
		else if (form.bmonth.value == "") {
    alert( "Please fill out Date of Birth" );
    form.bmonth.focus();
    return false ;
	}
		else if (form.byear.value == "") {
    alert( "Please fill out Date of Birth" );
    form.byear.focus();
    return false ;
	}
		else if (form.job_title.value == "") {
    alert( "Please fill out Job title" );
    form.job_title.focus();
    return false ;
	}
/************/
		else if (form.job_from_year.value == "") {
    alert( "Please fill out how long with this employer" );
    form.Job_From.focus();
    return false ;
	}
		else if (form.job_from_month.value == "") {
    alert( "Please fill out how long with this employer" );
    form.job_from_month.focus();
    return false ;
	}
		else if (form.work_phone1.value == "") {
    alert( "Please fill out Work Phone" );
    form.work_phone1.focus();
    return false ;
	}
		else if (form.work_phone2.value == "") {
    alert( "Please fill out Work Phone" );
    form.work_phone2.focus();
    return false ;
	}
		else if (form.work_phone3.value == "") {
    alert( "Please fill out Work Phone" );
    form.work_phone3.focus();
    return false ;
	}
		else if (form.Bankruptcy.value == "") {
    alert( "Please fill out Declared Bankruptcy " );
    form.Bankruptcy.focus();
    return false ;
	}
/************/
		else if (form.authorize.value == "") {
    alert( "Please fill out Do you authorize us to forward your application information" );
    form.authorize.focus();
    return false ;
	}
	else if (form.more_info.checked == false) {
    alert( "Please agree with the privacy policy" );
    form.more_info.focus();
    return false ;
	}
	
	
	
	//form._Power_sport_type.value = form.Power_sport_type.selectedindex.text;
	//form._Power_sport_type.value ="Test";
	//form._Power_sport_make.value = form.Power_sport_make.text;
	//form._Power_sport_model.value = form.Power_sport_model.text;

	
	return true;
}


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

arr_make = new Array();
arr_model = new Array();
arr_model1 = new Array();
 
arr_make['4'] = arr_make['4']+','+"Aprilia"+'~'+'20';
arr_model['4'] = new Array();
arr_make['2'] = arr_make['2']+','+"Arctic Cat"+'~'+'25';
arr_model['2'] = new Array();
arr_make['1'] = arr_make['1']+','+"Arctic Cat"+'~'+'25';
arr_model['1'] = new Array();
arr_make['4'] = arr_make['4']+','+"BMW"+'~'+'12';
arr_model['4'] = new Array();
arr_make['4'] = arr_make['4']+','+"Buell"+'~'+'15';
arr_model['4'] = new Array();
arr_make['1'] = arr_make['1']+','+"Can-Am™"+'~'+'389';
arr_model['1'] = new Array();
arr_make['4'] = arr_make['4']+','+"Can-Am™"+'~'+'389';
arr_model['4'] = new Array();
arr_make['4'] = arr_make['4']+','+"Ducati"+'~'+'24';
arr_model['4'] = new Array();
arr_make['4'] = arr_make['4']+','+"E-TON"+'~'+'373';
arr_model['4'] = new Array();
arr_make['1'] = arr_make['1']+','+"E-TON"+'~'+'373';
arr_model['1'] = new Array();
arr_make['4'] = arr_make['4']+','+"Harley-Davidson"+'~'+'10';
arr_model['4'] = new Array();
arr_make['3'] = arr_make['3']+','+"Honda"+'~'+'2';
arr_model['3'] = new Array();
arr_make['1'] = arr_make['1']+','+"Honda"+'~'+'2';
arr_model['1'] = new Array();
arr_make['4'] = arr_make['4']+','+"Honda"+'~'+'2';
arr_model['4'] = new Array();
arr_make['3'] = arr_make['3']+','+"Kawasaki"+'~'+'3';
arr_model['3'] = new Array();
arr_make['1'] = arr_make['1']+','+"Kawasaki"+'~'+'3';
arr_model['1'] = new Array();
arr_make['4'] = arr_make['4']+','+"Kawasaki"+'~'+'3';
arr_model['4'] = new Array();
arr_make['4'] = arr_make['4']+','+"KTM"+'~'+'21';
arr_model['4'] = new Array();
arr_make['1'] = arr_make['1']+','+"KTM"+'~'+'21';
arr_model['1'] = new Array();
arr_make['4'] = arr_make['4']+','+"KYMCO"+'~'+'27';
arr_model['4'] = new Array();
arr_make['1'] = arr_make['1']+','+"KYMCO"+'~'+'27';
arr_model['1'] = new Array();
arr_make['4'] = arr_make['4']+','+"Piaggio"+'~'+'17';
arr_model['4'] = new Array();
arr_make['2'] = arr_make['2']+','+"Polaris"+'~'+'23';
arr_model['2'] = new Array();
arr_make['1'] = arr_make['1']+','+"Polaris"+'~'+'23';
arr_model['1'] = new Array();
arr_make['3'] = arr_make['3']+','+"Sea-Doo"+'~'+'28';
arr_model['3'] = new Array();
arr_make['2'] = arr_make['2']+','+"Ski-Doo"+'~'+'35';
arr_model['2'] = new Array();
arr_make['1'] = arr_make['1']+','+"Suzuki"+'~'+'4';
arr_model['1'] = new Array();
arr_make['4'] = arr_make['4']+','+"Suzuki"+'~'+'4';
arr_model['4'] = new Array();
arr_make['4'] = arr_make['4']+','+"Triumph"+'~'+'16';
arr_model['4'] = new Array();
arr_make['4'] = arr_make['4']+','+"Victory"+'~'+'11';
arr_model['4'] = new Array();
arr_make['4'] = arr_make['4']+','+"Yamaha"+'~'+'1';
arr_model['4'] = new Array();
arr_make['2'] = arr_make['2']+','+"Yamaha"+'~'+'1';
arr_model['2'] = new Array();
arr_make['1'] = arr_make['1']+','+"Yamaha"+'~'+'1';
arr_model['1'] = new Array();
arr_make['3'] = arr_make['3']+','+"Yamaha"+'~'+'1';
arr_model['3'] = new Array();
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 AC Sno Pro® 120"+'~'+'15082--25282';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 Bearcat® 570"+'~'+'15093--25318';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 Bearcat® 570 XT"+'~'+'15093--25317';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 Bearcat® Z1 XT"+'~'+'15093--25321';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 CrossFire™ 1000"+'~'+'15098--25341';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 CrossFire™ 1000 LE"+'~'+'15098--25346';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 CrossFire™ 1000 Sno Pro®"+'~'+'15098--25342';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 CrossFire™ 5"+'~'+'15098--25338';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 CrossFire™ 6"+'~'+'15098--25339';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 CrossFire™ 8"+'~'+'15098--25337';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 CrossFire™ 8 LE"+'~'+'15098--25345';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 CrossFire™ 8 Sno Pro®"+'~'+'15098--25340';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 CrossFire™ R 1000"+'~'+'15098--25344';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 CrossFire™ R 1000 LE"+'~'+'15098--25349';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 CrossFire™ R 8"+'~'+'15098--25343';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 CrossFire™ R 8 LE"+'~'+'15098--25348';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 F1000 EFI Sno Pro®"+'~'+'15081--25278';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 F5 EFI"+'~'+'15078--25269';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 F5 EFI LXR"+'~'+'15078--25270';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 F570 Base"+'~'+'15077--25268';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 F6 EFI Sno Pro®"+'~'+'15079--25272';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 F8 EFI"+'~'+'15080--25274';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 F8 EFI LE"+'~'+'15080--25280';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 F8 EFI LXR"+'~'+'15080--25276';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 F8 EFI Sno Pro®"+'~'+'15080--25275';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 M1000 EFI 153"+'~'+'15091--25312';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 M1000 EFI 153 Sno Pro®"+'~'+'15091--25310';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 M1000 EFI 162"+'~'+'15091--25313';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 M1000 EFI 162 LE"+'~'+'15091--25316';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 M1000 EFI 162 Sno Pro®"+'~'+'15091--25311';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 M6 EFI 153"+'~'+'15085--25285';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 M8 EFI 153"+'~'+'15086--25286';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 M8 EFI 153 LE"+'~'+'15086--25309';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 M8 EFI 153 Sno Pro®"+'~'+'15086--25288';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 M8 EFI 162"+'~'+'15086--25290';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 M8 EFI 162 Sno Pro®"+'~'+'15086--25287';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 T 500"+'~'+'15095--25323';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 T 570"+'~'+'15095--25324';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 T Z1"+'~'+'15095--25325';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 T Z1 LXR"+'~'+'15095--25326';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 T Z1 Turbo LE"+'~'+'15095--25329';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 T Z1 Turbo Touring LXR"+'~'+'15095--25328';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 Z1 EFI"+'~'+'15097--25332';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 Z1 LXR"+'~'+'15097--25333';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 Z1 Turbo"+'~'+'15097--25334';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 Z1 Turbo LE"+'~'+'15097--25335';
arr_model['2']['25'] = arr_model['2']['25']+','+"2009 Z1 Turbo LXR"+'~'+'15097--25336';
arr_model['4']['12'] = arr_model['4']['12']+','+"2009 F 800 GS"+'~'+'15052--25213';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 120 Dragon"+'~'+'15112--25395';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 IQ Touring 600"+'~'+'15108--25379';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 IQ Touring FS"+'~'+'15108--25378';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 IQ Touring FST"+'~'+'15108--25377';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 RMK® 600 Shift (144-Inch)"+'~'+'15106--25365';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 RMK® 600 Shift (155-Inch)"+'~'+'15106--25364';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 RMK® 700 (155-Inch)"+'~'+'15106--25367';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 RMK® 800 (155-Inch)"+'~'+'15106--25375';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 RMK® 800 Assault (146-Inch)"+'~'+'15106--25374';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 RMK® 800 Dragon (155-Inch)"+'~'+'15106--25370';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 RMK® 800 Dragon (163-Inch)"+'~'+'15106--25371';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 RMK® 800 Shift (144-Inch)"+'~'+'15106--25373';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 RMK® Trail"+'~'+'15106--25366';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 SwitchBack™ 600"+'~'+'15109--25381';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 SwitchBack™ 600 Dragon"+'~'+'15109--25383';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 SwitchBack™ 800"+'~'+'15109--25380';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 SwitchBack™ 800 Dragon"+'~'+'15109--25384';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 SwitchBack™ Turbo"+'~'+'15109--25382';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 Trail Touring DLX"+'~'+'15107--25376';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 WideTrak™ IQ"+'~'+'15111--25387';
arr_model['2']['23'] = arr_model['2']['23']+','+"2009 WideTrak™ LX"+'~'+'15111--25386';
arr_model['4']['20'] = arr_model['4']['20']+','+"2008 RSV 1000 R"+'~'+'14998--25076';
arr_model['4']['20'] = arr_model['4']['20']+','+"2008 RSV 1000 R FACTORY"+'~'+'14998--25077';
arr_model['4']['20'] = arr_model['4']['20']+','+"2008 RXV 4.5"+'~'+'14999--25078';
arr_model['4']['20'] = arr_model['4']['20']+','+"2008 RXV 5.5"+'~'+'14999--25079';
arr_model['4']['20'] = arr_model['4']['20']+','+"2008 Scarabeo 100"+'~'+'15000--25081';
arr_model['4']['20'] = arr_model['4']['20']+','+"2008 Scarabeo 200"+'~'+'15000--25111';
arr_model['4']['20'] = arr_model['4']['20']+','+"2008 Scarabeo 500 I.E."+'~'+'15000--25080';
arr_model['4']['20'] = arr_model['4']['20']+','+"2008 SL 750 Shiver"+'~'+'14997--25075';
arr_model['4']['20'] = arr_model['4']['20']+','+"2008 SportCity 250"+'~'+'15001--25082';
arr_model['4']['20'] = arr_model['4']['20']+','+"2008 SR 50 R Factory"+'~'+'15002--25083';
arr_model['4']['20'] = arr_model['4']['20']+','+"2008 SXV 4.5"+'~'+'15003--25084';
arr_model['4']['20'] = arr_model['4']['20']+','+"2008 SXV 5.5"+'~'+'15003--25085';
arr_model['4']['20'] = arr_model['4']['20']+','+"2008 Tuono 1000 R"+'~'+'15004--25086';
arr_model['4']['20'] = arr_model['4']['20']+','+"2008 Tuono 1000 R Factory"+'~'+'15004--25087';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 250 2x4"+'~'+'14822--24477';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 250 DVX"+'~'+'14822--24476';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 366 4x4 Automatic"+'~'+'14829--24518';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 400 4x4 Automatic"+'~'+'14830--24524';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 400 DVX"+'~'+'14830--24521';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 500 4x4"+'~'+'14831--24528';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 500 4x4 Automatic"+'~'+'14831--24529';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 500 4x4 Automatic M4"+'~'+'14831--24531';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 500 4x4 Automatic TRV Plus"+'~'+'14831--24532';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 650 H1 4x4 Automatic"+'~'+'14832--24534';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 650 H1 4x4 Automatic TRV Plus"+'~'+'14832--24536';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 700 4x4 Diesel"+'~'+'14834--24543';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 700 EFI 4x4 Automatic"+'~'+'14834--24542';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 700 EFI 4x4 Automatic M4"+'~'+'14834--24554';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 700 EFI 4x4 Automatic TRV Plus LE"+'~'+'14834--24556';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 700 H1 EFI 4x4 Automatic SE"+'~'+'14834--24541';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 90 2x4"+'~'+'14821--24475';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 90 DVX 2x4"+'~'+'14821--24474';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 AC 120"+'~'+'14734--24230';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 Bearcat® 570"+'~'+'14729--24217';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 Bearcat® 660 Turbo WideTrack Articulating Rail"+'~'+'14729--24219';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 Bearcat® 660 Turbo WideTrack Straight Rail"+'~'+'14729--24218';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 Bearcat® 660 WideTrack"+'~'+'14729--24216';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 CrossFire™ 1000"+'~'+'14712--24167';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 CrossFire™ 1000 Sno Pro®"+'~'+'14712--24168';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 CrossFire™ 5"+'~'+'14712--24164';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 CrossFire™ 6"+'~'+'14712--24165';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 CrossFire™ 8"+'~'+'14712--24163';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 CrossFire™ 8 Sno Pro®"+'~'+'14712--24166';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 F1000 EFI"+'~'+'14722--24191';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 F1000 EFI LXR"+'~'+'14722--24193';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 F1000 EFI Sno Pro®"+'~'+'14722--24192';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 F5 EFI"+'~'+'14713--24169';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 F5 EFI LXR"+'~'+'14713--24170';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 F570 Base"+'~'+'14737--24234';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 F6 EFI"+'~'+'14714--24171';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 F6 EFI LXR"+'~'+'14714--24173';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 F6 EFI Sno Pro®"+'~'+'14714--24172';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 F8 EFI"+'~'+'14716--24177';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 F8 EFI LXR"+'~'+'14716--24179';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 F8 EFI Sno Pro®"+'~'+'14716--24178';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 Jaguar Z1"+'~'+'14735--24231';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 M1000 EFI 153"+'~'+'14726--24211';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 M1000 EFI 153 Sno Pro®"+'~'+'14726--24209';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 M1000 EFI 162"+'~'+'14726--24212';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 M1000 EFI 162 Sno Pro®"+'~'+'14726--24210';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 M6 EFI 153"+'~'+'14724--24204';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 M8 EFI 153"+'~'+'14725--24206';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 M8 EFI 153 Sno Pro®"+'~'+'14725--24208';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 M8 EFI 162"+'~'+'14725--24207';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 Panther® 370"+'~'+'14732--24223';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 Panther® 660 Touring"+'~'+'14732--24224';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 Prowler 650 H1 4x4 Automatic"+'~'+'14843--24571';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 Prowler 650 H1 4x4 Automatic XT"+'~'+'14843--24570';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 Prowler 650 H1 4x4 Automatic XT M4"+'~'+'14843--24576';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 Prowler 700 H1 4x4 Automatic XTX"+'~'+'14843--24577';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 T 500"+'~'+'14745--24254';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 T 570"+'~'+'14745--24255';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 T Z1"+'~'+'14745--24256';
arr_model['2']['25'] = arr_model['2']['25']+','+"2008 T Z1 LXR"+'~'+'14745--24257';
arr_model['1']['25'] = arr_model['1']['25']+','+"2008 ThunderCat H2 EFI 4x4 Automatic SE"+'~'+'14837--24560';
arr_model['4']['12'] = arr_model['4']['12']+','+"2008 F 800 ST"+'~'+'15017--25148';
arr_model['4']['12'] = arr_model['4']['12']+','+"2008 G 650 Xcountry"+'~'+'15070--25251';
arr_model['4']['12'] = arr_model['4']['12']+','+"2008 HP2 Megamoto"+'~'+'15022--25211';
arr_model['4']['12'] = arr_model['4']['12']+','+"2008 HP2 Sport"+'~'+'15022--25129';
arr_model['4']['12'] = arr_model['4']['12']+','+"2008 K 1200 GT"+'~'+'15030--25146';
arr_model['4']['12'] = arr_model['4']['12']+','+"2008 K 1200 LT"+'~'+'15030--25144';
arr_model['4']['12'] = arr_model['4']['12']+','+"2008 K 1200 S"+'~'+'15030--25145';
arr_model['4']['12'] = arr_model['4']['12']+','+"2008 R 1200 GS"+'~'+'15019--25120';
arr_model['4']['12'] = arr_model['4']['12']+','+"2008 R 1200 GS Adventure"+'~'+'15019--25121';
arr_model['4']['12'] = arr_model['4']['12']+','+"2008 R 1200 R"+'~'+'15019--25149';
arr_model['4']['12'] = arr_model['4']['12']+','+"2008 R 1200 RT"+'~'+'15019--25150';
arr_model['4']['15'] = arr_model['4']['15']+','+"2008 1125 R"+'~'+'14881--24698';
arr_model['4']['15'] = arr_model['4']['15']+','+"2008 Blast® Base"+'~'+'14874--24683';
arr_model['4']['15'] = arr_model['4']['15']+','+"2008 Firebolt® XB12R"+'~'+'14878--24693';
arr_model['4']['15'] = arr_model['4']['15']+','+"2008 Lightning® CITYX XB9SX"+'~'+'14871--24674';
arr_model['4']['15'] = arr_model['4']['15']+','+"2008 Lightning® Super TT XB12STT"+'~'+'14871--24677';
arr_model['4']['15'] = arr_model['4']['15']+','+"2008 Lightning® XB12S"+'~'+'14871--24676';
arr_model['4']['15'] = arr_model['4']['15']+','+"2008 Lightning® XB12Scg"+'~'+'14871--24673';
arr_model['4']['15'] = arr_model['4']['15']+','+"2008 Lightning® XB12Ss"+'~'+'14871--24675';
arr_model['4']['15'] = arr_model['4']['15']+','+"2008 Ulysses® XB12X"+'~'+'14875--24684';
arr_model['4']['15'] = arr_model['4']['15']+','+"2008 Ulysses® XB12XT"+'~'+'14875--25205';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 DS 250"+'~'+'14861--24642';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 DS 450"+'~'+'14861--24641';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 DS 450 X"+'~'+'14861--24761';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 DS 70"+'~'+'14861--24662';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 DS 90"+'~'+'14861--24640';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 DS 90 X"+'~'+'14861--24762';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 Outlander™ 400 H.O."+'~'+'14828--24607';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 Outlander™ 400 H.O. XT"+'~'+'14828--24608';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 Outlander™ 500 H.O. EFI 4x4"+'~'+'14828--24605';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 Outlander™ 500 H.O. EFI XT 4x4"+'~'+'14828--24606';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 Outlander™ 650 H.O. EFI 4x4"+'~'+'14828--24603';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 Outlander™ 650 H.O. EFI XT 4X4"+'~'+'14828--24604';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 Outlander™ 800 H.O. EFI 4x4"+'~'+'14828--24509';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 Outlander™ 800 H.O. EFI XT 4x4"+'~'+'14828--24503';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 Outlander™ MAX 400 H.O."+'~'+'14833--24614';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 Outlander™ MAX 400 H.O. XT"+'~'+'14833--24615';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 Outlander™ MAX 500 H.O. EFI 4x4"+'~'+'14833--24612';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 Outlander™ MAX 500 H.O. EFI XT 4x4"+'~'+'14833--24613';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 Outlander™ MAX 650 H.O. EFI 4x4"+'~'+'14833--24610';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 Outlander™ MAX 650 H.O. EFI XT 4x4"+'~'+'14833--24611';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 Outlander™ MAX 800 H.O. EFI 4x4"+'~'+'14833--24539';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 Outlander™ MAX 800 H.O. EFI Ltd 4x4"+'~'+'14833--24609';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 Outlander™ MAX 800 H.O. EFI XT 4x4"+'~'+'14833--24538';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 Renegade 500 HO EFI"+'~'+'14778--24354';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 Renegade 800 HO EFI"+'~'+'14778--24351';
arr_model['1']['389'] = arr_model['1']['389']+','+"2008 Renegade 800 HO EFI X"+'~'+'14778--24773';
arr_model['4']['389'] = arr_model['4']['389']+','+"2008 Spyder Roadster"+'~'+'14761--24296';
arr_model['4']['24'] = arr_model['4']['24']+','+"2008 1098 Base"+'~'+'14889--24739';
arr_model['4']['24'] = arr_model['4']['24']+','+"2008 1098 R"+'~'+'14889--25105';
arr_model['4']['24'] = arr_model['4']['24']+','+"2008 1098 S"+'~'+'14889--24740';
arr_model['4']['24'] = arr_model['4']['24']+','+"2008 848 Base"+'~'+'15015--25106';
arr_model['4']['24'] = arr_model['4']['24']+','+"2008 Desmosedici D16RR"+'~'+'15014--25104';
arr_model['4']['24'] = arr_model['4']['24']+','+"2008 Hypermotard 1100"+'~'+'14747--24263';
arr_model['4']['24'] = arr_model['4']['24']+','+"2008 Hypermotard 1100 S"+'~'+'14747--24262';
arr_model['4']['24'] = arr_model['4']['24']+','+"2008 Monster 695"+'~'+'14987--25046';
arr_model['4']['24'] = arr_model['4']['24']+','+"2008 Monster S2R 1000"+'~'+'14987--25050';
arr_model['4']['24'] = arr_model['4']['24']+','+"2008 Monster S4R S Tricolore"+'~'+'14987--25047';
arr_model['4']['24'] = arr_model['4']['24']+','+"2008 Multistrada 1100 S"+'~'+'14985--25040';
arr_model['4']['24'] = arr_model['4']['24']+','+"2008 SportClassic GT1000"+'~'+'14986--25102';
arr_model['4']['24'] = arr_model['4']['24']+','+"2008 SportClassic Sport 1000 Biposto"+'~'+'14986--25103';
arr_model['4']['24'] = arr_model['4']['24']+','+"2008 SportClassic Sport 1000 S"+'~'+'14986--25044';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Dyna Glide Fat Bob™"+'~'+'14883--24733';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Dyna Glide Low Rider®"+'~'+'14883--24719';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Dyna Glide Street Bob™"+'~'+'14883--24722';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Dyna Glide Super Glide®"+'~'+'14883--24720';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Dyna Glide Super Glide® Custom"+'~'+'14883--24721';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Dyna Glide Wide Glide® 105th Anniversary Edition"+'~'+'14883--24718';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Electra Glide® Classic"+'~'+'14856--24626';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Electra Glide® Standard"+'~'+'14856--24627';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Electra Glide® Ultra Classic®"+'~'+'14856--24625';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Road Glide® Base"+'~'+'14858--24629';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Road King® Base"+'~'+'14859--24630';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Road King® Classic"+'~'+'14859--24632';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Softail® Cross Bones™"+'~'+'14886--25212';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Softail® Custom"+'~'+'14886--24728';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Softail® Deluxe"+'~'+'14886--24731';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Softail® Fat Boy®"+'~'+'14886--24730';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Softail® Heritage Softail® Classic"+'~'+'14886--24729';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Softail® Night Train®"+'~'+'14886--24726';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Softail® Rocker™"+'~'+'14886--24757';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Softail® Rocker™ C"+'~'+'14886--24758';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Sportster® 1200 Custom"+'~'+'14882--24707';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Sportster® 1200 Low"+'~'+'14882--24711';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Sportster® 1200 Nightster"+'~'+'14882--24713';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Sportster® 1200 Roadster"+'~'+'14882--24708';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Sportster® 883"+'~'+'14882--24705';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Sportster® 883 Custom"+'~'+'14882--24706';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Sportster® 883 Low"+'~'+'14882--24709';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 Street Glide™ Base"+'~'+'14857--24628';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 VRSC A V-Rod®"+'~'+'14860--24633';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 VRSC Night Rod™"+'~'+'14860--24636';
arr_model['4']['10'] = arr_model['4']['10']+','+"2008 VRSC Night Rod™ Special"+'~'+'14860--24637';
arr_model['3']['2'] = arr_model['3']['2']+','+"2008 AquaTrax® F-15X"+'~'+'14924--24865';
arr_model['3']['2'] = arr_model['3']['2']+','+"2008 AquaTrax® F-15X GPScape"+'~'+'14924--24867';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 CBR® 1000RR"+'~'+'14906--25009';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 CBR® 600RR"+'~'+'14906--24816';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 CRF® 100F"+'~'+'14780--24355';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 CRF® 150F"+'~'+'14780--24359';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 CRF® 150R"+'~'+'14780--24365';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 CRF® 150R Expert"+'~'+'14780--24366';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 CRF® 230F"+'~'+'14780--24360';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 CRF® 230L"+'~'+'14780--24827';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 CRF® 250R"+'~'+'14780--24838';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 CRF® 250X"+'~'+'14780--24828';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 CRF® 450R"+'~'+'14780--24839';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 CRF® 450X"+'~'+'14780--24829';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 CRF® 50F"+'~'+'14780--24358';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 CRF® 70F"+'~'+'14780--24357';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 CRF® 80F"+'~'+'14780--24356';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 FourTrax Foreman® 4x4"+'~'+'14827--24495';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 FourTrax Foreman® 4x4 ES"+'~'+'14827--24494';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 FourTrax Foreman® 4x4 ES with Power Steering"+'~'+'14827--24497';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 FourTrax Foreman® 4x4 with Power Steering"+'~'+'14827--24544';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 FourTrax Foreman® Rubicon"+'~'+'14827--24493';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 FourTrax Foreman® Rubicon GPScape"+'~'+'14827--24496';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 FourTrax Rancher™ 4X4"+'~'+'14926--24872';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 FourTrax Rancher™ 4X4 ES"+'~'+'14926--24873';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 FourTrax Rancher™ Base"+'~'+'14926--24870';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 FourTrax Rancher™ ES"+'~'+'14926--24871';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 FourTrax Recon® Base"+'~'+'14925--24868';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 FourTrax Recon® ES"+'~'+'14925--24869';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 FourTrax Rincon™ Base"+'~'+'14825--24485';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 FourTrax Rincon™ GPScape"+'~'+'14825--24486';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 Gold Wing® Airbag"+'~'+'14870--24670';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 Gold Wing® Audio / Comfort / Navi"+'~'+'14870--24672';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 Gold Wing® Audio / Comfort / Navi / ABS"+'~'+'14870--24669';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 Gold Wing® Premium Audio"+'~'+'14870--24671';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 Interceptor ABS"+'~'+'14917--24837';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 Interceptor Base"+'~'+'14917--24836';


arr_model['4']['2'] = arr_model['4']['2']+','+"2008 Metropolitan Base"+'~'+'14915--24834';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 Nighthawk 250"+'~'+'14909--24819';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 Rebel Base"+'~'+'14791--24387';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 Ruckus Base"+'~'+'14916--24835';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 Shadow® Aero"+'~'+'14793--24393';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 Shadow® Spirit 750 C2"+'~'+'14793--24397';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 Silver Wing™ ABS"+'~'+'14914--24832';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 Silver Wing™ Base"+'~'+'14914--24833';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 ST1300 ABS"+'~'+'14913--24830';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 ST1300 Base"+'~'+'14913--24831';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 TRX™ 250EX"+'~'+'14823--24480';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 TRX™ 300EX"+'~'+'14823--24530';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 TRX™ 400EX"+'~'+'14823--24862';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 TRX™ 450R (Electric Start)"+'~'+'14823--24482';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 TRX™ 450R (Kick Start)"+'~'+'14823--24481';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 TRX™ 700XX"+'~'+'14823--24863';
arr_model['1']['2'] = arr_model['1']['2']+','+"2008 TRX™ 90EX"+'~'+'14823--24479';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 VTX™ 1300 C"+'~'+'14942--24916';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 VTX™ 1300 R"+'~'+'14942--24917';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 VTX™ 1300 Tourer"+'~'+'14942--24915';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 VTX™ 1800 Tourer Spec 1"+'~'+'14949--24937';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 VTX™ 1800 Tourer Spec 2"+'~'+'14949--24938';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 VTX™ 1800F Spec 1"+'~'+'14947--24932';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 VTX™ 1800F Spec 2"+'~'+'14947--24931';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 VTX™ 1800N Spec 1"+'~'+'14948--24934';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 VTX™ 1800N Spec 2"+'~'+'14948--24935';
arr_model['4']['2'] = arr_model['4']['2']+','+"2008 XR 650L"+'~'+'14782--24386';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 Bayou® 250"+'~'+'14854--24621';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 Brute Force™ 650 4x4"+'~'+'14849--24586';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 Brute Force™ 650 4x4i"+'~'+'14849--24588';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 Brute Force™ 750 4x4i"+'~'+'14849--24585';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 Brute Force™ 750 NRA OUTDOORS"+'~'+'14849--25068';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Concours™ 14"+'~'+'14743--24252';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Concours™ 14 ABS"+'~'+'14743--24258';
arr_model['3']['3'] = arr_model['3']['3']+','+"2008 Jet Ski® 800 SX-R™"+'~'+'14932--24894';
arr_model['3']['3'] = arr_model['3']['3']+','+"2008 Jet Ski® STX™ -15F"+'~'+'14933--24895';
arr_model['3']['3'] = arr_model['3']['3']+','+"2008 Jet Ski® Ultra® 250X"+'~'+'14934--24897';
arr_model['3']['3'] = arr_model['3']['3']+','+"2008 Jet Ski® Ultra® LX"+'~'+'14934--24898';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 KFX® 450R"+'~'+'14850--24596';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 KFX® 50"+'~'+'14850--24593';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 KFX® 700"+'~'+'14850--24595';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 KFX® 90"+'~'+'14850--24594';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 KLR 650"+'~'+'14839--24563';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 KLX™ 110"+'~'+'14754--24551';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 KLX™ 140"+'~'+'14754--25152';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 KLX™ 140L"+'~'+'14754--25153';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 KLX™ 450R"+'~'+'14754--24282';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 KX™ 100"+'~'+'14835--24547';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 KX™ 250F"+'~'+'14835--24548';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 KX™ 450F"+'~'+'14835--24550';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 KX™ 65"+'~'+'14835--24545';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 KX™ 85"+'~'+'14835--24546';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 Mule™ 3000"+'~'+'14900--24982';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 Mule™ 3010 4x4"+'~'+'14900--24983';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 Mule™ 3010 4x4 Diesel"+'~'+'14900--24780';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 Mule™ 3010 Trans 4x4"+'~'+'14900--24985';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 Mule™ 3010 Trans 4x4 Diesel"+'~'+'14900--24779';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 Mule™ 600"+'~'+'14900--24980';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 Mule™ 610 4x4"+'~'+'14900--24981';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Ninja 250R"+'~'+'14927--25109';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Ninja 500R"+'~'+'14927--24880';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Ninja 650R"+'~'+'14927--24882';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Ninja ZX™-10R"+'~'+'14927--25131';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Ninja ZX™-14"+'~'+'14927--24885';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Ninja ZX™-6R"+'~'+'14927--24883';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 Prairie® 360"+'~'+'14855--24623';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 Prairie® 360 4x4"+'~'+'14855--24622';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 Teryx™ 750 4x4"+'~'+'14968--24994';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 Teryx™ 750 4x4 LE"+'~'+'14968--25000';
arr_model['1']['3'] = arr_model['1']['3']+','+"2008 Teryx™ 750 4x4 NRA OUTDOORS™"+'~'+'14968--25001';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Versys™ Base"+'~'+'14836--24555';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Vulcan 1500 Classic"+'~'+'14885--24724';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Vulcan 1600 Classic"+'~'+'14939--24909';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Vulcan 1600 Mean Streak™"+'~'+'14939--24908';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Vulcan 1600 Nomad™"+'~'+'14939--24910';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Vulcan 2000 Base"+'~'+'14941--24913';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Vulcan 2000 Classic"+'~'+'14941--24914';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Vulcan 2000 Classic LT"+'~'+'14941--24912';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Vulcan 500 LTD"+'~'+'14936--24901';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Vulcan 900 Classic"+'~'+'14938--24905';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Vulcan 900 Classic LT"+'~'+'14938--24906';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Vulcan 900 Custom"+'~'+'14938--24907';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 Z 1000"+'~'+'14929--24890';
arr_model['4']['3'] = arr_model['4']['3']+','+"2008 ZZR® 600"+'~'+'14930--24891';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 990 Adventure LC8"+'~'+'15075--25262';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 990 Adventure S"+'~'+'15075--25263';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 Duke 690"+'~'+'15037--25181';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 EXC 450 Racing"+'~'+'14969--24995';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 EXC 530 Racing"+'~'+'14969--24996';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 SX 105"+'~'+'14989--25056';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 SX 125"+'~'+'14989--25057';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 SX 144"+'~'+'14989--25062';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 SX 250"+'~'+'14989--25058';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 SX 250 F"+'~'+'14989--25059';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 SX 450 F"+'~'+'14989--25060';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 SX 50"+'~'+'14989--25156';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 SX 50 Junior"+'~'+'14989--25155';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 SX 50 MINI"+'~'+'14989--25157';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 SX 505 F"+'~'+'14989--25061';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 SX 65"+'~'+'14989--25154';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 SX 85"+'~'+'14989--25055';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 XC 105"+'~'+'15036--25178';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 XC 200"+'~'+'15036--25164';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 XC 200 W"+'~'+'15036--25165';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 XC 250"+'~'+'15036--25169';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 XC 250 F"+'~'+'15036--25174';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 XC 250 F W"+'~'+'15036--25168';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 XC 250 W (e)"+'~'+'15036--25163';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 XC 300"+'~'+'15036--25166';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 XC 300 W (e)"+'~'+'15036--25167';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 XC 450 F"+'~'+'15036--25179';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 XC 450 W (R)"+'~'+'15036--25175';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 XC 505 F"+'~'+'15036--25180';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 XC 530 W (R)"+'~'+'15036--25173';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 XC 65"+'~'+'15036--25176';
arr_model['4']['21'] = arr_model['4']['21']+','+"2008 XC 85"+'~'+'15036--25177';
arr_model['1']['21'] = arr_model['1']['21']+','+"2008 XC ATV 450"+'~'+'14899--24774';
arr_model['1']['21'] = arr_model['1']['21']+','+"2008 XC ATV 525"+'~'+'14899--24778';
arr_model['4']['27'] = arr_model['4']['27']+','+"2008 Agility 125"+'~'+'15054--25218';
arr_model['4']['27'] = arr_model['4']['27']+','+"2008 Agility 50"+'~'+'15054--25217';
arr_model['4']['27'] = arr_model['4']['27']+','+"2008 Grand Vista 250"+'~'+'15050--25206';
arr_model['1']['27'] = arr_model['1']['27']+','+"2008 Mongoose 250"+'~'+'15056--25226';
arr_model['1']['27'] = arr_model['1']['27']+','+"2008 Mongoose 300"+'~'+'15056--25227';
arr_model['1']['27'] = arr_model['1']['27']+','+"2008 Mongoose 50"+'~'+'15056--25224';
arr_model['1']['27'] = arr_model['1']['27']+','+"2008 Mongoose 70"+'~'+'15056--25228';
arr_model['1']['27'] = arr_model['1']['27']+','+"2008 Mongoose 90"+'~'+'15056--25225';
arr_model['1']['27'] = arr_model['1']['27']+','+"2008 MXU 150"+'~'+'14873--25223';
arr_model['1']['27'] = arr_model['1']['27']+','+"2008 MXU 250"+'~'+'14873--25222';
arr_model['1']['27'] = arr_model['1']['27']+','+"2008 MXU 300"+'~'+'14873--25221';
arr_model['1']['27'] = arr_model['1']['27']+','+"2008 MXU 500"+'~'+'14873--25220';
arr_model['1']['27'] = arr_model['1']['27']+','+"2008 MXU 500 4x4 Camo"+'~'+'14873--24679';
arr_model['4']['27'] = arr_model['4']['27']+','+"2008 People 150"+'~'+'15053--25215';
arr_model['4']['27'] = arr_model['4']['27']+','+"2008 People 50"+'~'+'15053--25214';
arr_model['4']['27'] = arr_model['4']['27']+','+"2008 People S 125"+'~'+'15051--25210';
arr_model['4']['27'] = arr_model['4']['27']+','+"2008 People S 200"+'~'+'15051--25208';
arr_model['4']['27'] = arr_model['4']['27']+','+"2008 People S 250"+'~'+'15051--25209';
arr_model['4']['27'] = arr_model['4']['27']+','+"2008 People S 50 4T"+'~'+'15051--25207';
arr_model['4']['27'] = arr_model['4']['27']+','+"2008 Super 8 50"+'~'+'15047--25194';
arr_model['4']['27'] = arr_model['4']['27']+','+"2008 Super 9 50"+'~'+'15055--25219';
arr_model['4']['27'] = arr_model['4']['27']+','+"2008 Venox 250"+'~'+'15044--25188';
arr_model['4']['27'] = arr_model['4']['27']+','+"2008 Xciting 250"+'~'+'15045--25190';
arr_model['4']['27'] = arr_model['4']['27']+','+"2008 Xciting 500"+'~'+'15045--25189';
arr_model['4']['17'] = arr_model['4']['17']+','+"2008 BV 250"+'~'+'15007--25091';
arr_model['4']['17'] = arr_model['4']['17']+','+"2008 BV 500"+'~'+'15007--25090';
arr_model['4']['17'] = arr_model['4']['17']+','+"2008 Fly 150"+'~'+'15008--25092';
arr_model['4']['17'] = arr_model['4']['17']+','+"2008 Fly 50"+'~'+'15008--25093';
arr_model['4']['17'] = arr_model['4']['17']+','+"2008 MP3 Three Wheeler 250"+'~'+'15006--25089';
arr_model['4']['17'] = arr_model['4']['17']+','+"2008 MP3 Three Wheeler 400"+'~'+'15006--25094';
arr_model['4']['17'] = arr_model['4']['17']+','+"2008 MP3 Three Wheeler 500"+'~'+'15006--25095';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 120 Youth"+'~'+'14719--24186';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 340 Base"+'~'+'14738--24238';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 340 Transport"+'~'+'14738--24239';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 550 LX"+'~'+'14720--24188';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 600RR Base"+'~'+'14764--24311';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 IQ 600 Dragon"+'~'+'14762--24299';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 IQ 700"+'~'+'14762--24310';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 IQ 700 Dragon"+'~'+'14762--24301';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 IQ FST Dragon"+'~'+'14762--24300';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 IQ Shift"+'~'+'14762--24298';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 IQ Cruiser Base"+'~'+'14752--24279';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 IQ Touring 600"+'~'+'14751--24278';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 IQ Touring FS"+'~'+'14751--24277';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 IQ Touring FST"+'~'+'14751--24276';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Outlaw™ 450 MXR"+'~'+'14864--24656';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Outlaw™ 50"+'~'+'14864--24655';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Outlaw™ 525 IRS"+'~'+'14864--24653';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Outlaw™ 525 S"+'~'+'14864--24657';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Outlaw™ 90"+'~'+'14864--24654';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Phoenix™ 200"+'~'+'14862--24649';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Ranger 2x4"+'~'+'14739--24638';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Ranger 4x4 EFI"+'~'+'14739--24639';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Ranger 6x6 EFI"+'~'+'14739--24644';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Ranger Crew"+'~'+'14739--24661';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Ranger RZR"+'~'+'14739--24240';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Ranger XP"+'~'+'14739--24643';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Ranger XP Pearl White (Limited Edition)"+'~'+'14739--24645';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Ranger XP Stealth Black Browning Edition (Limited Edition"+'~'+'14739--24648';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Ranger XP Supersonic Blue Rally (Limited Edition)"+'~'+'14739--24647';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Ranger XP Turbo Silver (Limited Edition)"+'~'+'14739--24646';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 RMK® 600 (144-Inch)"+'~'+'14723--24195';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 RMK® 600 (155-Inch)"+'~'+'14723--24194';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 RMK® 700 (155-Inch)"+'~'+'14723--24197';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 RMK® 700 Dragon (155-Inch)"+'~'+'14723--24198';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 RMK® 700 Dragon (163-Inch)"+'~'+'14723--24199';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 RMK® 800 Dragon (155-Inch)"+'~'+'14723--24200';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 RMK® 800 Dragon (163-Inch)"+'~'+'14723--24201';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 RMK® Shift (155-Inch)"+'~'+'14723--24202';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 RMK® Trail"+'~'+'14723--24196';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Scrambler™ 500 4x4"+'~'+'14863--24651';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Sportsman® 300"+'~'+'14867--24704';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Sportsman® 400 H.O."+'~'+'14867--24702';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Sportsman® 500 EFI"+'~'+'14867--24703';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Sportsman® 500 EFI Touring"+'~'+'14867--24714';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Sportsman® 500 EFI X2"+'~'+'14867--24716';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Sportsman® 500 H.O."+'~'+'14867--24700';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Sportsman® 6x6"+'~'+'14867--24699';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Sportsman® 700 EFI X2"+'~'+'14867--24717';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Sportsman® 800 EFI"+'~'+'14867--24701';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Sportsman® 800 EFI Touring"+'~'+'14867--24715';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Sportsman® 90"+'~'+'14867--24660';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 Super Sport 550"+'~'+'14718--24185';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 SwitchBack™ 600"+'~'+'14715--24175';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 SwitchBack™ 600 Dragon"+'~'+'14715--24182';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 SwitchBack™ 700"+'~'+'14715--24181';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 SwitchBack™ 700 Dragon"+'~'+'14715--24183';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 SwitchBack™ Turbo"+'~'+'14715--24176';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Trail Blazer™ 330"+'~'+'14866--24659';
arr_model['1']['23'] = arr_model['1']['23']+','+"2008 Trail Boss® 330"+'~'+'14865--24658';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 Trail Touring DLX"+'~'+'14721--24189';
arr_model['2']['23'] = arr_model['2']['23']+','+"2008 WideTrak™ LX"+'~'+'14717--24184';
arr_model['3']['28'] = arr_model['3']['28']+','+"2008 GTI™ 130"+'~'+'14945--24923';
arr_model['3']['28'] = arr_model['3']['28']+','+"2008 GTI™ SE 130"+'~'+'14945--24924';
arr_model['3']['28'] = arr_model['3']['28']+','+"2008 GTI™ SE 155"+'~'+'14945--24925';
arr_model['3']['28'] = arr_model['3']['28']+','+"2008 GTX 155"+'~'+'14946--24926';
arr_model['3']['28'] = arr_model['3']['28']+','+"2008 GTX 215"+'~'+'14946--24930';
arr_model['3']['28'] = arr_model['3']['28']+','+"2008 GTX Limited 215"+'~'+'14946--24927';
arr_model['3']['28'] = arr_model['3']['28']+','+"2008 GTX Wake 155"+'~'+'14946--24928';
arr_model['3']['28'] = arr_model['3']['28']+','+"2008 GTX Wake 215"+'~'+'14946--24929';
arr_model['3']['28'] = arr_model['3']['28']+','+"2008 RXP™ -X 255"+'~'+'14944--24922';
arr_model['3']['28'] = arr_model['3']['28']+','+"2008 RXP™ 155"+'~'+'14944--24921';
arr_model['3']['28'] = arr_model['3']['28']+','+"2008 RXP™ 215"+'~'+'14944--24920';
arr_model['3']['28'] = arr_model['3']['28']+','+"2008 RXT™ -X 255"+'~'+'14943--24919';
arr_model['3']['28'] = arr_model['3']['28']+','+"2008 RXT™ 215"+'~'+'14943--24918';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Expedition Sport 550F"+'~'+'14787--24377';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Expedition Sport V-800"+'~'+'14787--24378';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Expedition TUV 600 H.O. SDI"+'~'+'14788--24379';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Expedition TUV V-800"+'~'+'14788--24380';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Freestyle Back Country"+'~'+'14796--24426';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Freestyle Park"+'~'+'14796--24427';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Freestyle Session 300F"+'~'+'14796--24424';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 GSX Fan 550F"+'~'+'14756--24287';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 GSX Limited 600 H.O. SDI"+'~'+'14758--24290';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 GSX Limited 800R Power T.E.K."+'~'+'14758--24291';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 GSX Limited Touring 600 H.O. SDI"+'~'+'14759--24292';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 GSX Sport 500 SS"+'~'+'14757--24288';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 GTX Fan 550F"+'~'+'14765--24317';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 GTX Limited 600 H.O. SDI"+'~'+'14767--24321';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 GTX Sport 500 SS"+'~'+'14766--24318';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 GTX Sport 600 H.O. SDI"+'~'+'14766--24319';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Legend Touring V-800"+'~'+'14786--24376';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Mini Z 120"+'~'+'14797--24428';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 MX Z 550 X 550F"+'~'+'14728--24215';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 MX Z Adrenaline 600 H.O. SDI"+'~'+'14733--24228';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 MX Z Adrenaline 800R Power T.E.K"+'~'+'14733--24229';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 MX Z Fan 550F"+'~'+'14727--24214';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 MX Z Renegade 600 H.O. SDI"+'~'+'14746--24260';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 MX Z Renegade 800R Power T.E.K."+'~'+'14746--24259';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 MX Z Renegade X 600 H.O. SDI"+'~'+'14748--24265';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 MX Z Renegade X 800R Power T.E.K."+'~'+'14748--24264';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 MX Z Renegade X 1.75 600 H.O. SDI"+'~'+'14749--24268';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 MX Z TNT 500 SS"+'~'+'14731--24221';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 MX Z Trail 500 SS"+'~'+'14730--24220';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 MX Z X 600 H.O. SDI"+'~'+'14750--24269';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 MX Z X 800R Power T.E.K."+'~'+'14750--24270';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Skandic® SUV 550F"+'~'+'14799--24431';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Skandic® SUV 600 H.O. SDI"+'~'+'14799--24430';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Skandic® SWT 550F"+'~'+'14800--24432';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Skandic® SWT V-800"+'~'+'14800--24433';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Skandic® Tundra 300F"+'~'+'14802--24436';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Skandic® Tundra LT 550F"+'~'+'14804--24440';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Skandic® Tundra LT V-800"+'~'+'14804--24441';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Skandic® WT 550F"+'~'+'14801--24434';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Skandic® WT 600"+'~'+'14801--24435';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Summit  X 146 800R Power T.E.K."+'~'+'14773--24338';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Summit  X 154 800R Power T.E.K."+'~'+'14773--24340';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Summit  X 163 800R Power T.E.K."+'~'+'14773--24339';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Summit Adrenaline 600 H.O. SDI"+'~'+'14771--24332';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Summit Everest 146 800R Power T.E.K."+'~'+'14772--24337';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Summit Everest 154 800R Power T.E.K."+'~'+'14772--24336';
arr_model['2']['35'] = arr_model['2']['35']+','+"2008 Summit Fan 550F"+'~'+'14770--24331';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 B-King ABS"+'~'+'14869--24971';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 B-King Base"+'~'+'14869--24664';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Bandit 1250"+'~'+'14965--24973';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Bandit 1250 ABS"+'~'+'14965--24972';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Boulevard C109R"+'~'+'14903--24805';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Boulevard C109RT"+'~'+'14903--24804';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Boulevard C50"+'~'+'14903--24795';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Boulevard C50 Black"+'~'+'14903--24796';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Boulevard C50 Limited Edition"+'~'+'14903--24803';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Boulevard C50T"+'~'+'14903--24800';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Boulevard C90"+'~'+'14903--24793';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Boulevard C90 Black"+'~'+'14903--24794';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Boulevard C90T"+'~'+'14903--24799';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Boulevard M109R"+'~'+'14903--24801';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Boulevard M109R Limited Edition"+'~'+'14903--24976';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Boulevard M109R2"+'~'+'14903--24802';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Boulevard M50"+'~'+'14903--24797';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Boulevard S40"+'~'+'14903--24792';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Boulevard S50"+'~'+'14903--24791';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Boulevard S83"+'~'+'14903--24790';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Burgman 400"+'~'+'14896--24763';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Burgman 650"+'~'+'14896--24959';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Burgman 650 Executive"+'~'+'14896--24960';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 DR 200SE"+'~'+'14819--24471';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 DR 650SE"+'~'+'14819--24747';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 DR-Z 125"+'~'+'14898--24772';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 DR-Z 125L"+'~'+'14898--24771';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 DR-Z 70"+'~'+'14898--24786';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 DR-Z 400S Base"+'~'+'14892--24748';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 DR-Z 400SM Base"+'~'+'14893--24749';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 GS 500F"+'~'+'14964--24970';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 GSX 650F"+'~'+'14902--24787';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 GSX-R 1000"+'~'+'14961--24956';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 GSX-R 600"+'~'+'14961--24957';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 GSX-R 750"+'~'+'14961--24958';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 GZ 250"+'~'+'14966--24974';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 Hayabusa™ 1340"+'~'+'14872--24678';
arr_model['1']['4'] = arr_model['1']['4']+','+"2008 KingQuad 400AS"+'~'+'14852--24992';
arr_model['1']['4'] = arr_model['1']['4']+','+"2008 KingQuad 400AS Camo"+'~'+'14852--24993';
arr_model['1']['4'] = arr_model['1']['4']+','+"2008 KingQuad 400FS"+'~'+'14852--24990';
arr_model['1']['4'] = arr_model['1']['4']+','+"2008 KingQuad 400FS Camo"+'~'+'14852--24991';
arr_model['1']['4'] = arr_model['1']['4']+','+"2008 KingQuad 450AXi 4X4 Auto"+'~'+'14852--24601';
arr_model['1']['4'] = arr_model['1']['4']+','+"2008 KingQuad 450AXi 4X4 Auto Camo"+'~'+'14852--24602';
arr_model['1']['4'] = arr_model['1']['4']+','+"2008 KingQuad 450AXi 4X4 Auto Special Edition"+'~'+'14852--24986';
arr_model['1']['4'] = arr_model['1']['4']+','+"2008 KingQuad 750AXi 4X4 Auto"+'~'+'14852--24987';
arr_model['1']['4'] = arr_model['1']['4']+','+"2008 KingQuad 750AXi 4X4 Auto Camo"+'~'+'14852--24988';
arr_model['1']['4'] = arr_model['1']['4']+','+"2008 KingQuad 750AXi 4X4 Auto Special Edition"+'~'+'14852--24989';
arr_model['1']['4'] = arr_model['1']['4']+','+"2008 Ozark 250"+'~'+'14848--24583';
arr_model['1']['4'] = arr_model['1']['4']+','+"2008 QuadRacer LT-R450"+'~'+'14851--24597';
arr_model['1']['4'] = arr_model['1']['4']+','+"2008 QuadRacer LT-R450 Special Edition"+'~'+'14851--24598';
arr_model['1']['4'] = arr_model['1']['4']+','+"2008 QuadSport® Z250"+'~'+'14853--24616';
arr_model['1']['4'] = arr_model['1']['4']+','+"2008 QuadSport® Z400"+'~'+'14853--24617';
arr_model['1']['4'] = arr_model['1']['4']+','+"2008 QuadSport® Z400 Special Edition"+'~'+'14853--24620';
arr_model['1']['4'] = arr_model['1']['4']+','+"2008 QuadSport® Z50"+'~'+'14853--24619';
arr_model['1']['4'] = arr_model['1']['4']+','+"2008 QuadSport® Z90"+'~'+'14853--24618';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 RM 250"+'~'+'14895--24756';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 RM 85"+'~'+'14895--24753';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 RM 85L"+'~'+'14895--24754';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 RM-Z 250"+'~'+'14897--24766';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 RM-Z 450"+'~'+'14897--24767';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 SV 650"+'~'+'14962--24963';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 SV 650 ABS"+'~'+'14962--24965';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 SV 650SF"+'~'+'14962--24962';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 SV 650SF ABS"+'~'+'14962--24964';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 V-Strom 1000"+'~'+'14894--24975';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 V-Strom 650"+'~'+'14894--24751';
arr_model['4']['4'] = arr_model['4']['4']+','+"2008 V-Strom 650 ABS"+'~'+'14894--24750';
arr_model['4']['16'] = arr_model['4']['16']+','+"2008 America Base"+'~'+'14951--24942';
arr_model['4']['16'] = arr_model['4']['16']+','+"2008 Bonneville Base"+'~'+'14950--24939';
arr_model['4']['16'] = arr_model['4']['16']+','+"2008 Bonneville Black"+'~'+'14950--24941';
arr_model['4']['16'] = arr_model['4']['16']+','+"2008 Bonneville T100"+'~'+'14950--24940';
arr_model['4']['16'] = arr_model['4']['16']+','+"2008 Daytona 675"+'~'+'14956--24947';
arr_model['4']['16'] = arr_model['4']['16']+','+"2008 Daytona 675 Special Edition"+'~'+'14956--24977';
arr_model['4']['16'] = arr_model['4']['16']+','+"2008 Rocket III Base"+'~'+'14960--24954';
arr_model['4']['16'] = arr_model['4']['16']+','+"2008 Rocket III Classic"+'~'+'14960--24953';
arr_model['4']['16'] = arr_model['4']['16']+','+"2008 Scrambler Base"+'~'+'14953--24944';
arr_model['4']['16'] = arr_model['4']['16']+','+"2008 Speed Triple"+'~'+'14957--24948';
arr_model['4']['16'] = arr_model['4']['16']+','+"2008 Speedmaster Base"+'~'+'14955--24946';
arr_model['4']['16'] = arr_model['4']['16']+','+"2008 Sprint ST"+'~'+'14958--24949';
arr_model['4']['16'] = arr_model['4']['16']+','+"2008 Sprint ST ABS"+'~'+'14958--24950';
arr_model['4']['16'] = arr_model['4']['16']+','+"2008 Street Triple 675"+'~'+'14954--24945';
arr_model['4']['16'] = arr_model['4']['16']+','+"2008 Thruxton 900"+'~'+'14952--24943';
arr_model['4']['16'] = arr_model['4']['16']+','+"2008 Tiger 1050"+'~'+'14959--24951';
arr_model['4']['16'] = arr_model['4']['16']+','+"2008 Tiger 1050 ABS"+'~'+'14959--24952';
arr_model['4']['11'] = arr_model['4']['11']+','+"2008 Hammer™ Base"+'~'+'14879--24694';
arr_model['4']['11'] = arr_model['4']['11']+','+"2008 Hammer™ S"+'~'+'14879--24695';
arr_model['4']['11'] = arr_model['4']['11']+','+"2008 Kingpin™ 8-Ball"+'~'+'14877--24691';
arr_model['4']['11'] = arr_model['4']['11']+','+"2008 Kingpin™ Base"+'~'+'14877--24690';
arr_model['4']['11'] = arr_model['4']['11']+','+"2008 Kingpin™ Tour"+'~'+'14877--24689';
arr_model['4']['11'] = arr_model['4']['11']+','+"2008 Ness Signature Series Arlen Ness JackPot™"+'~'+'14880--24696';
arr_model['4']['11'] = arr_model['4']['11']+','+"2008 Ness Signature Series Cory Ness JackPot™"+'~'+'14880--24697';
arr_model['4']['11'] = arr_model['4']['11']+','+"2008 Vegas™ 8-Ball"+'~'+'14876--24687';
arr_model['4']['11'] = arr_model['4']['11']+','+"2008 Vegas™ Base"+'~'+'14876--24685';
arr_model['4']['11'] = arr_model['4']['11']+','+"2008 Vegas™ JackPot™"+'~'+'14876--24686';
arr_model['4']['11'] = arr_model['4']['11']+','+"2008 Vegas™ Low"+'~'+'14876--24688';
arr_model['4']['11'] = arr_model['4']['11']+','+"2008 Vision™ Street"+'~'+'14868--24663';
arr_model['4']['11'] = arr_model['4']['11']+','+"2008 Vision™ Street Premium"+'~'+'14868--24665';
arr_model['4']['11'] = arr_model['4']['11']+','+"2008 Vision™ Tour"+'~'+'14868--24666';
arr_model['4']['11'] = arr_model['4']['11']+','+"2008 Vision™ Tour Comfort"+'~'+'14868--24667';
arr_model['4']['11'] = arr_model['4']['11']+','+"2008 Vision™ Tour Premium"+'~'+'14868--24668';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 Apex GT 40th Anniversary"+'~'+'14740--24244';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 Apex LTX"+'~'+'14740--24249';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 Apex LTX GT 40th Anniversary"+'~'+'14740--24248';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 Apex MTX"+'~'+'14740--24242';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 Apex MTX SE 40th Anniversary"+'~'+'14740--24241';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 Apex RTX"+'~'+'14740--24247';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Big Bear 250"+'~'+'14805--24444';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Big Bear 400 IRS 5-Speed 4X4"+'~'+'14805--24442';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 C3 Base"+'~'+'14812--24453';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 FJR 1300A"+'~'+'14935--24900';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 FJR 1300AE"+'~'+'14935--24899';
arr_model['3']['1'] = arr_model['3']['1']+','+"2008 FX Base"+'~'+'14887--24734';
arr_model['3']['1'] = arr_model['3']['1']+','+"2008 FX Cruiser"+'~'+'14887--24736';
arr_model['3']['1'] = arr_model['3']['1']+','+"2008 FX Cruiser HO"+'~'+'14887--24737';
arr_model['3']['1'] = arr_model['3']['1']+','+"2008 FX Cruiser SHO"+'~'+'14887--24760';
arr_model['3']['1'] = arr_model['3']['1']+','+"2008 FX HO"+'~'+'14887--24735';
arr_model['3']['1'] = arr_model['3']['1']+','+"2008 FX SHO"+'~'+'14887--24759';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 FX Nytro Base"+'~'+'14774--24343';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 FX Nytro MTX"+'~'+'14774--24347';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 FX Nytro MTX 40TH Anniversary"+'~'+'14774--24346';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 FX Nytro MTX With Reverse"+'~'+'14774--24345';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 FX Nytro RTX"+'~'+'14774--24344';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 FX Nytro RTX 40TH Anniversary"+'~'+'14774--24342';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 FX Nytro RTX With Reverse"+'~'+'14774--24341';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 FZ 1"+'~'+'14931--24892';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 FZ 6"+'~'+'14931--24893';
arr_model['3']['1'] = arr_model['3']['1']+','+"2008 GP 1300R"+'~'+'14888--24738';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Grizzly 125 Automatic"+'~'+'14795--24418';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Grizzly 350 Auto 4x4"+'~'+'14795--24416';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Grizzly 350 Automatic"+'~'+'14795--24417';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Grizzly 350 IRS Auto 4x4"+'~'+'14795--24411';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Grizzly 400 Auto 4x4"+'~'+'14795--24415';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Grizzly 450 Auto 4x4"+'~'+'14795--24413';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Grizzly 660 Auto 4x4"+'~'+'14795--24412';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Grizzly 700 FI 4x4 Auto Ducks Unlimited Edition"+'~'+'14795--24410';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Grizzly 700 FI Auto 4x4"+'~'+'14795--24408';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Grizzly 700 FI Auto 4x4 EPS"+'~'+'14795--24423';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Grizzly 80"+'~'+'14795--24419';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Majesty 400"+'~'+'14808--24448';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Morphous Base"+'~'+'14809--24449';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 Phazer Base"+'~'+'14769--24329';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 Phazer GT"+'~'+'14769--24327';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 Phazer MTX"+'~'+'14769--24328';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 Phazer RTX"+'~'+'14769--24330';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 PW 50"+'~'+'14818--24470';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Raider Base"+'~'+'14912--24824';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Raider S"+'~'+'14912--24825';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Raptor 250"+'~'+'14781--24403';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Raptor 250 SE"+'~'+'14781--24404';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Raptor 250 SE Custom"+'~'+'14781--24405';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Raptor 350"+'~'+'14781--24402';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Raptor 50"+'~'+'14781--24407';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Raptor 700R"+'~'+'14781--24367';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Raptor 700R SE"+'~'+'14781--24368';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Raptor 80"+'~'+'14781--24406';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Rhino 450 Auto 4x4"+'~'+'14923--24859';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Rhino 450 Auto 4x4 Special Edition"+'~'+'14923--24861';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Rhino 700 FI Auto 4x4"+'~'+'14923--24855';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Rhino 700 FI Auto 4x4 Ducks Unlimited Edition"+'~'+'14923--24877';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Rhino 700 FI Auto 4x4 SE Midnight Armor"+'~'+'14923--24878';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Rhino 700 FI Auto 4x4 SE Steel Blue"+'~'+'14923--24876';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Rhino 700 FI Auto 4x4 Sport Edition"+'~'+'14923--24879';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Road Star Base"+'~'+'14918--24843';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Road Star S"+'~'+'14918--24842';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Road Star Silverado"+'~'+'14918--24841';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Road Star Silverado S"+'~'+'14918--24840';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Roadliner Midnight"+'~'+'14911--24821';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Roadliner S"+'~'+'14911--24822';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Royal Star Tour Deluxe"+'~'+'14904--24807';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Royal Star Tour Deluxe S"+'~'+'14904--24811';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Royal Star Venture"+'~'+'14904--24806';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Royal Star Venture S"+'~'+'14904--24810';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 RS Vector"+'~'+'14763--24312';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 RS Vector GT"+'~'+'14763--24313';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 RS Vector GT 40th Anniversary"+'~'+'14763--24314';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 RS Vector LTX"+'~'+'14763--24315';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 RS Vector LTX GT"+'~'+'14763--24316';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 RS Venture"+'~'+'14763--24305';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 RS Venture GT"+'~'+'14763--24303';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 RS Viking Professional"+'~'+'14741--24250';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Stratoliner Midnight"+'~'+'14905--24812';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Stratoliner S"+'~'+'14905--24813';
arr_model['3']['1'] = arr_model['3']['1']+','+"2008 Superjet Base"+'~'+'14890--24742';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 TT-R 110E"+'~'+'14817--24468';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 TT-R 125E"+'~'+'14817--24467';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 TT-R 125L"+'~'+'14817--24465';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 TT-R 125LE"+'~'+'14817--24466';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 TT-R 230"+'~'+'14817--24464';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 TT-R 50E"+'~'+'14817--24469';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 TW 200"+'~'+'14940--24911';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 V Star 250"+'~'+'14921--24852';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 V Star Classic"+'~'+'14921--24850';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 V Star Custom"+'~'+'14921--24851';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 V Star Silverado"+'~'+'14921--24849';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 V Star 1100 Classic"+'~'+'14920--24847';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 V Star 1100 Custom"+'~'+'14920--24846';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 V Star 1100 Silverado"+'~'+'14920--24848';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 V Star 1300 Base"+'~'+'14919--24845';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 V Star 1300 Tourer"+'~'+'14919--24844';
arr_model['2']['1'] = arr_model['2']['1']+','+"2008 Venture Lite"+'~'+'14742--24251';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Vino 125"+'~'+'14810--24451';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Vino Classic"+'~'+'14810--24450';
arr_model['3']['1'] = arr_model['3']['1']+','+"2008 VX Base"+'~'+'14891--24745';
arr_model['3']['1'] = arr_model['3']['1']+','+"2008 VX Cruiser"+'~'+'14891--24746';
arr_model['3']['1'] = arr_model['3']['1']+','+"2008 VX Deluxe"+'~'+'14891--24743';
arr_model['3']['1'] = arr_model['3']['1']+','+"2008 VX Sport"+'~'+'14891--24744';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Warrior Base"+'~'+'14922--24853';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Warrior Midnight"+'~'+'14922--24854';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Wolverine® 350"+'~'+'14792--24389';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Wolverine® 450 4x4"+'~'+'14792--24388';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 Wolverine® 450 4x4 Special Edition"+'~'+'14792--24398';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 WR 250F"+'~'+'14816--24462';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 WR 250R"+'~'+'14816--24903';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 WR 250X"+'~'+'14816--24902';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 WR 450F"+'~'+'14816--24463';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 XT 250"+'~'+'14937--24904';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 YFZ 450"+'~'+'14794--24399';
arr_model['1']['1'] = arr_model['1']['1']+','+"2008 YFZ 450 SE"+'~'+'14794--24401';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 YZ 125"+'~'+'14813--24457';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 YZ 250"+'~'+'14813--24455';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 YZ 250F"+'~'+'14813--24456';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 YZ 450F"+'~'+'14813--24454';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 YZ 85"+'~'+'14813--24458';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 YZF R1"+'~'+'14928--24888';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 YZF R6"+'~'+'14928--24889';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 YZF R6S"+'~'+'14928--24887';
arr_model['4']['1'] = arr_model['4']['1']+','+"2008 Zuma Base"+'~'+'14811--24452';
arr_model['4']['20'] = arr_model['4']['20']+','+"2007 ETV 1000 Caponord"+'~'+'14631--23945';
arr_model['4']['20'] = arr_model['4']['20']+','+"2007 Mojito Custom 150"+'~'+'14634--23949';
arr_model['4']['20'] = arr_model['4']['20']+','+"2007 RSV 1000 R"+'~'+'14653--24007';
arr_model['4']['20'] = arr_model['4']['20']+','+"2007 RSV 1000 R FACTORY"+'~'+'14653--24008';
arr_model['4']['20'] = arr_model['4']['20']+','+"2007 RXV 4.5"+'~'+'14620--23926';
arr_model['4']['20'] = arr_model['4']['20']+','+"2007 RXV 5.5"+'~'+'14620--23942';
arr_model['4']['20'] = arr_model['4']['20']+','+"2007 Scarabeo 100"+'~'+'14655--24275';
arr_model['4']['20'] = arr_model['4']['20']+','+"2007 Scarabeo 500 I.E."+'~'+'14655--24014';
arr_model['4']['20'] = arr_model['4']['20']+','+"2007 SL 750 Shiver"+'~'+'14884--24723';
arr_model['4']['20'] = arr_model['4']['20']+','+"2007 SportCity 250"+'~'+'14656--24016';
arr_model['4']['20'] = arr_model['4']['20']+','+"2007 SR 50 R Factory"+'~'+'14633--23947';
arr_model['4']['20'] = arr_model['4']['20']+','+"2007 SXV 4.5"+'~'+'14630--23943';
arr_model['4']['20'] = arr_model['4']['20']+','+"2007 SXV 5.5"+'~'+'14630--23944';
arr_model['4']['20'] = arr_model['4']['20']+','+"2007 Tuono 1000 R"+'~'+'14632--23946';
arr_model['4']['20'] = arr_model['4']['20']+','+"2007 Tuono 1000 R Factory"+'~'+'14632--23950';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 250 2x4"+'~'+'14504--23591';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 250 DVX"+'~'+'14504--23590';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 400 4x4"+'~'+'14506--23599';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 400 4x4 Automatic"+'~'+'14506--23602';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 400 4x4 Automatic LE"+'~'+'14506--23600';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 400 4x4 Automatic TRV Plus"+'~'+'14506--23604';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 400 DVX"+'~'+'14506--23597';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 400 DVX LE Tony Stewart"+'~'+'14506--23606';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 500 4x4"+'~'+'14507--23608';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 500 4x4 Automatic"+'~'+'14507--23607';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 650 H1 4x4 Automatic"+'~'+'14514--23673';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 650 H1 4x4 Automatic LE"+'~'+'14514--23624';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 650 H1 4x4 Automatic TBX"+'~'+'14514--23676';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 650 H1 4x4 Automatic TRV Plus"+'~'+'14514--23681';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 650 H1 4x4 Automatic TRV Plus LE"+'~'+'14514--23682';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 700 4x4 Diesel"+'~'+'14511--24135';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 700 EFI 4x4 Automatic"+'~'+'14511--23623';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 700 EFI 4x4 Automatic LE"+'~'+'14511--23617';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 90 2x4"+'~'+'14503--23588';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 90 DVX 2x4"+'~'+'14503--23589';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 AC 120"+'~'+'13431--21670';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 Bearcat® 570"+'~'+'13419--21617';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 Bearcat® 660 Turbo WideTrack Articulating Rail"+'~'+'13419--21619';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 Bearcat® 660 Turbo WideTrack Straight Rail"+'~'+'13419--21618';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 Bearcat® 660 WideTrack"+'~'+'13419--21616';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 CrossFire™ 1000"+'~'+'13437--21702';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 CrossFire™ 1000 Sno Pro®"+'~'+'13437--21703';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 CrossFire™ 5"+'~'+'13437--21695';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 CrossFire™ 6"+'~'+'13437--21696';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 CrossFire™ 8"+'~'+'13437--21694';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 CrossFire™ 8 Sno Pro®"+'~'+'13437--21701';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 F1000 EFI"+'~'+'13415--21600';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 F1000 EFI LXR"+'~'+'13415--21602';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 F1000 EFI Sno Pro®"+'~'+'13415--21601';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 F5 EFI"+'~'+'13411--21584';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 F5 EFI LXR"+'~'+'13411--21585';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 F6 EFI"+'~'+'13412--21586';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 F6 EFI LXR"+'~'+'13412--21588';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 F6 EFI Sno Pro®"+'~'+'13412--21587';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 F8 EFI"+'~'+'13414--21591';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 F8 EFI  LXR"+'~'+'13414--21594';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 F8 EFI Sno Pro®"+'~'+'13414--21592';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 F8 EFI Sno Pro® Tony Stewart"+'~'+'13414--21595';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 Jaguar Z1"+'~'+'13446--21715';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 M1000 EFI 153"+'~'+'13436--21690';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 M1000 EFI 153 Sno Pro®"+'~'+'13436--21692';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 M1000 EFI 162"+'~'+'13436--21691';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 M1000 EFI 162 Sno Pro®"+'~'+'13436--21693';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 M6 EFI 141"+'~'+'13432--21671';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 M6 EFI 153"+'~'+'13432--21672';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 M8 EFI 141"+'~'+'13433--21674';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 M8 EFI 153"+'~'+'13433--21680';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 M8 EFI 153 Sno Pro®"+'~'+'13433--21684';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 M8 EFI 162"+'~'+'13433--21681';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 Panther® 370"+'~'+'13418--21613';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 Panther® 570"+'~'+'13418--21612';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 Panther® 660 Touring"+'~'+'13418--21614';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 Panther® 660 Trail"+'~'+'13418--21615';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 Prowler 650 H1"+'~'+'14529--23689';
arr_model['1']['25'] = arr_model['1']['25']+','+"2007 Prowler 650 H1 XT"+'~'+'14529--23684';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 T660 Turbo Touring"+'~'+'13430--21669';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 T660 Turbo Touring LE"+'~'+'13430--21668';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 T660 Turbo Trail"+'~'+'13430--21663';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 T660 Turbo Trail LE"+'~'+'13430--21666';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 Z® 370"+'~'+'13416--21607';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 Z® 370 LX"+'~'+'13416--21606';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 Z® 570"+'~'+'13416--21604';
arr_model['2']['25'] = arr_model['2']['25']+','+"2007 Z® 570 LX"+'~'+'13416--21603';
arr_model['4']['12'] = arr_model['4']['12']+','+"2007 F 650 GS"+'~'+'14550--23737';
arr_model['4']['12'] = arr_model['4']['12']+','+"2007 F 650 GS Dakar"+'~'+'14550--23738';
arr_model['4']['12'] = arr_model['4']['12']+','+"2007 F 800 S"+'~'+'14550--23913';
arr_model['4']['12'] = arr_model['4']['12']+','+"2007 F 800 ST"+'~'+'14550--23914';
arr_model['4']['12'] = arr_model['4']['12']+','+"2007 G 650 Xchallenge"+'~'+'14617--23921';
arr_model['4']['12'] = arr_model['4']['12']+','+"2007 G 650 Xcountry"+'~'+'14617--23918';
arr_model['4']['12'] = arr_model['4']['12']+','+"2007 G 650 Xmoto"+'~'+'14617--23922';
arr_model['4']['12'] = arr_model['4']['12']+','+"2007 K 1200 GT"+'~'+'14552--23746';
arr_model['4']['12'] = arr_model['4']['12']+','+"2007 K 1200 LT"+'~'+'14552--23744';
arr_model['4']['12'] = arr_model['4']['12']+','+"2007 K 1200 R"+'~'+'14552--23743';
arr_model['4']['12'] = arr_model['4']['12']+','+"2007 K 1200 R Sport"+'~'+'14552--23915';
arr_model['4']['12'] = arr_model['4']['12']+','+"2007 K 1200 S"+'~'+'14552--23745';
arr_model['4']['12'] = arr_model['4']['12']+','+"2007 R 1200 GS"+'~'+'14449--23747';
arr_model['4']['12'] = arr_model['4']['12']+','+"2007 R 1200 GS Adventure"+'~'+'14449--23748';
arr_model['4']['12'] = arr_model['4']['12']+','+"2007 R 1200 GS HP2"+'~'+'14449--23749';
arr_model['4']['12'] = arr_model['4']['12']+','+"2007 R 1200 R"+'~'+'14449--23762';
arr_model['4']['12'] = arr_model['4']['12']+','+"2007 R 1200 RT"+'~'+'14449--23761';
arr_model['4']['12'] = arr_model['4']['12']+','+"2007 R 1200 S"+'~'+'14449--23419';
arr_model['4']['12'] = arr_model['4']['12']+','+"2007 R 1200 ST"+'~'+'14449--23916';
arr_model['4']['15'] = arr_model['4']['15']+','+"2007 Blast® Base"+'~'+'14493--23548';
arr_model['4']['15'] = arr_model['4']['15']+','+"2007 Firebolt® XB12R"+'~'+'14491--23546';
arr_model['4']['15'] = arr_model['4']['15']+','+"2007 Firebolt® XB9R"+'~'+'14491--23545';
arr_model['4']['15'] = arr_model['4']['15']+','+"2007 Lightning® CITYX XB9SX"+'~'+'14498--23560';
arr_model['4']['15'] = arr_model['4']['15']+','+"2007 Lightning® Super TT XB12STT"+'~'+'14498--24037';
arr_model['4']['15'] = arr_model['4']['15']+','+"2007 Lightning® XB12S"+'~'+'14498--23562';
arr_model['4']['15'] = arr_model['4']['15']+','+"2007 Lightning® XB12Scg"+'~'+'14498--23559';
arr_model['4']['15'] = arr_model['4']['15']+','+"2007 Lightning® XB12Ss"+'~'+'14498--23561';
arr_model['4']['15'] = arr_model['4']['15']+','+"2007 Ulysses® XB12X"+'~'+'14492--23547';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 DS 250"+'~'+'14376--23151';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 DS 650 X"+'~'+'14376--23150';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 DS 90 4-Stroke™"+'~'+'14376--23149';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 Outlander™ 400 H.O."+'~'+'14367--23101';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 Outlander™ 400 H.O. XT"+'~'+'14367--23104';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 Outlander™ 500 H.O. EFI"+'~'+'14367--23126';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 Outlander™ 500 H.O. EFI XT"+'~'+'14367--23127';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 Outlander™ 650 H.O. EFI"+'~'+'14367--23109';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 Outlander™ 650 H.O. EFI XT"+'~'+'14367--23110';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 Outlander™ 800 H.O. EFI"+'~'+'14367--23118';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 Outlander™ 800 H.O. EFI XT"+'~'+'14367--23119';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 Outlander™ MAX 400 H.O."+'~'+'14367--23102';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 Outlander™ MAX 400 H.O.XT"+'~'+'14367--23105';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 Outlander™ MAX 500 H.O. EFI"+'~'+'14367--23128';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 Outlander™ MAX 500 H.O. EFI XT"+'~'+'14367--23129';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 Outlander™ MAX 650 H.O. EFI"+'~'+'14367--23111';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 Outlander™ MAX 650 H.O. EFI XT"+'~'+'14367--23112';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 Outlander™ MAX 800 H.O. EFI"+'~'+'14367--23120';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 Outlander™ MAX 800 H.O. EFI Ltd"+'~'+'14367--23131';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 Outlander™ MAX 800 H.O. EFI XT"+'~'+'14367--23121';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 Rally™ 200"+'~'+'14375--23146';
arr_model['1']['389'] = arr_model['1']['389']+','+"2007 Renegade Base"+'~'+'14373--23134';
arr_model['4']['24'] = arr_model['4']['24']+','+"2007 1098 Base"+'~'+'14602--23881';
arr_model['4']['24'] = arr_model['4']['24']+','+"2007 1098 S"+'~'+'14602--23887';
arr_model['4']['24'] = arr_model['4']['24']+','+"2007 1098 S Tricolore"+'~'+'14602--23890';
arr_model['4']['24'] = arr_model['4']['24']+','+"2007 999 S Team USA"+'~'+'14501--23569';
arr_model['4']['24'] = arr_model['4']['24']+','+"2007 Desmosedici D16RR"+'~'+'14820--24473';
arr_model['4']['24'] = arr_model['4']['24']+','+"2007 Monster 695"+'~'+'13447--21724';
arr_model['4']['24'] = arr_model['4']['24']+','+"2007 Monster S2R 1000"+'~'+'13447--23896';
arr_model['4']['24'] = arr_model['4']['24']+','+"2007 Monster S2R 800"+'~'+'13447--23895';
arr_model['4']['24'] = arr_model['4']['24']+','+"2007 Monster S4R Testastretta"+'~'+'13447--23694';
arr_model['4']['24'] = arr_model['4']['24']+','+"2007 Monster S4Rs Testastretta"+'~'+'13447--23568';
arr_model['4']['24'] = arr_model['4']['24']+','+"2007 Multistrada 1100"+'~'+'14554--23758';
arr_model['4']['24'] = arr_model['4']['24']+','+"2007 Multistrada 1100 S"+'~'+'14554--23755';
arr_model['4']['24'] = arr_model['4']['24']+','+"2007 SportClassic GT1000"+'~'+'14574--23817';
arr_model['4']['24'] = arr_model['4']['24']+','+"2007 SportClassic Sport 1000 Biposto"+'~'+'14574--23818';
arr_model['4']['24'] = arr_model['4']['24']+','+"2007 SportClassic Sport 1000 mono SE"+'~'+'14574--24582';
arr_model['4']['24'] = arr_model['4']['24']+','+"2007 SportClassic Sport 1000 S"+'~'+'14574--23819';
arr_model['4']['24'] = arr_model['4']['24']+','+"2007 ST 3"+'~'+'14610--23901';
arr_model['4']['24'] = arr_model['4']['24']+','+"2007 ST 3s ABS"+'~'+'14610--23900';
arr_model['4']['24'] = arr_model['4']['24']+','+"2007 Supersport 800"+'~'+'14609--23899';
arr_model['4']['373'] = arr_model['4']['373']+','+"2007 Beamer III"+'~'+'14691--24106';
arr_model['4']['373'] = arr_model['4']['373']+','+"2007 Beamer Matrix II"+'~'+'14691--24107';
arr_model['4']['373'] = arr_model['4']['373']+','+"2007 Beamer R2"+'~'+'14691--24325';
arr_model['4']['373'] = arr_model['4']['373']+','+"2007 Beamer R4"+'~'+'14691--24326';
arr_model['1']['373'] = arr_model['1']['373']+','+"2007 Rover GT Utility Kart"+'~'+'14695--24324';
arr_model['1']['373'] = arr_model['1']['373']+','+"2007 Rover Utility Kart"+'~'+'14695--24115';
arr_model['1']['373'] = arr_model['1']['373']+','+"2007 Vector 250R"+'~'+'14692--24108';
arr_model['1']['373'] = arr_model['1']['373']+','+"2007 Viper 4-Stroke 150R"+'~'+'14694--24113';
arr_model['1']['373'] = arr_model['1']['373']+','+"2007 Viper 4-Stroke 70"+'~'+'14694--24111';
arr_model['1']['373'] = arr_model['1']['373']+','+"2007 Viper 4-Stroke 70M"+'~'+'14694--24110';
arr_model['1']['373'] = arr_model['1']['373']+','+"2007 Viper 4-Stroke 90R"+'~'+'14694--24112';
arr_model['1']['373'] = arr_model['1']['373']+','+"2007 Yukon II 150"+'~'+'14693--24109';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Dyna Glide Low Rider®"+'~'+'14485--23523';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Dyna Glide Street Bob™"+'~'+'14485--23527';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Dyna Glide Super Glide®"+'~'+'14485--23525';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Dyna Glide Super Glide® Custom"+'~'+'14485--23526';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Dyna Glide Wide Glide®"+'~'+'14485--23522';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Electra Glide® Classic"+'~'+'14471--23478';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Electra Glide® Standard"+'~'+'14471--23479';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Electra Glide® Ultra Classic®"+'~'+'14471--23477';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Road Glide® Base"+'~'+'14464--23468';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Road King® Base"+'~'+'14473--23488';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Road King® Classic"+'~'+'14473--23490';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Road King® Custom"+'~'+'14473--23489';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Softail® Custom"+'~'+'14490--23540';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Softail® Deluxe"+'~'+'14490--23543';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Softail® Deuce™"+'~'+'14490--23539';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Softail® Fat Boy®"+'~'+'14490--23542';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Softail® Heritage Softail® Classic"+'~'+'14490--23541';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Softail® Night Train®"+'~'+'14490--23538';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Softail® Springer® Classic"+'~'+'14490--23544';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Softail® Standard"+'~'+'14490--23537';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Sportster® 1200 Custom"+'~'+'14455--23437';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Sportster® 1200 Low"+'~'+'14455--23441';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Sportster® 1200 Nightster"+'~'+'14455--24137';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Sportster® 1200 Roadster"+'~'+'14455--23438';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Sportster® 883"+'~'+'14455--23435';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Sportster® 883 Custom"+'~'+'14455--23436';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Sportster® 883 Low"+'~'+'14455--23439';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Sportster® 883R"+'~'+'14455--23440';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Sportster® XL 50"+'~'+'14455--23521';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 Street Glide™ Base"+'~'+'14463--23465';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 VRSC A V-Rod®"+'~'+'14454--23433';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 VRSC Night Rod™"+'~'+'14454--23434';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 VRSC Night Rod™ Special"+'~'+'14454--23442';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 VRSC Street Rod™"+'~'+'14454--23432';
arr_model['4']['10'] = arr_model['4']['10']+','+"2007 VRSC X V-Rod®"+'~'+'14454--23454';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 919 Base"+'~'+'14522--23659';
arr_model['3']['2'] = arr_model['3']['2']+','+"2007 AquaTrax® F-12"+'~'+'14553--23750';
arr_model['3']['2'] = arr_model['3']['2']+','+"2007 AquaTrax® F-12X"+'~'+'14553--23751';
arr_model['3']['2'] = arr_model['3']['2']+','+"2007 AquaTrax® F-12X GPScape"+'~'+'14553--23754';
arr_model['3']['2'] = arr_model['3']['2']+','+"2007 AquaTrax® R-12X"+'~'+'14553--23753';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 CBR® 1000RR"+'~'+'14521--23656';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 CBR® 600RR"+'~'+'14521--23658';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 CRF® 100F"+'~'+'14360--23079';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 CRF® 150F"+'~'+'14360--23185';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 CRF® 150R"+'~'+'14360--23692';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 CRF® 150R Expert"+'~'+'14360--23693';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 CRF® 230F"+'~'+'14360--23186';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 CRF® 250R"+'~'+'14360--23189';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 CRF® 250X"+'~'+'14360--23187';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 CRF® 450R"+'~'+'14360--23190';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 CRF® 450X"+'~'+'14360--23188';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 CRF® 50F"+'~'+'14360--23082';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 CRF® 70F"+'~'+'14360--23081';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 CRF® 80F"+'~'+'14360--23080';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 CR® 125R"+'~'+'14386--23181';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 CR® 250R"+'~'+'14386--23182';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 CR® 85R"+'~'+'14386--23179';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 CR® 85R Expert"+'~'+'14386--23180';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Elite 80 Base"+'~'+'14528--23683';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 FourTrax Foreman® 4x4"+'~'+'14407--23247';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 FourTrax Foreman® 4x4 ES"+'~'+'14407--23248';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 FourTrax Foreman® 4x4 ES Power Steering"+'~'+'14407--24322';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 FourTrax Foreman® Rubicon"+'~'+'14407--23249';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 FourTrax Foreman® Rubicon GPScape"+'~'+'14407--23250';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 FourTrax Rancher™ 4X4"+'~'+'14600--23876';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 FourTrax Rancher™ 4X4 ES"+'~'+'14600--23877';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 FourTrax Rancher™ AT"+'~'+'14600--23878';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 FourTrax Rancher™ AT GPScape"+'~'+'14600--23879';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 FourTrax Rancher™ Base"+'~'+'14600--23874';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 FourTrax Rancher™ ES"+'~'+'14600--23875';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 FourTrax Recon® Base"+'~'+'14405--23242';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 FourTrax Recon® ES"+'~'+'14405--23243';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 FourTrax Rincon™ Base"+'~'+'14410--23255';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 FourTrax Rincon™ GPScape"+'~'+'14410--23257';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Gold Wing® Airbag"+'~'+'14518--23650';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Gold Wing® Audio / Comfort / Navi"+'~'+'14518--23651';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Gold Wing® Audio / Comfort / Navi / ABS"+'~'+'14518--23649';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Gold Wing® Premium Audio"+'~'+'14518--23648';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Helix™ Base"+'~'+'14425--23322';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Interceptor ABS"+'~'+'14520--23655';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Interceptor Base"+'~'+'14520--23654';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Metropolitan Base"+'~'+'14532--23691';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Nighthawk 250"+'~'+'14523--23660';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Rebel Base"+'~'+'14601--23880';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Reflex® ABS"+'~'+'14527--23678';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Reflex® Base"+'~'+'14527--23677';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Reflex® Sport"+'~'+'14527--23679';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Reflex® Sport ABS"+'~'+'14527--23680';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Ruckus Base"+'~'+'14530--23688';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Shadow® Aero"+'~'+'14404--23238';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Shadow® Sabre™"+'~'+'14404--23240';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Shadow® Spirit"+'~'+'14404--23239';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Shadow® Spirit 750 C2"+'~'+'14404--23707';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Shadow® Spirit 750 DC"+'~'+'14404--23241';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Shadow® VLX"+'~'+'14404--23236';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Shadow® VLX Deluxe"+'~'+'14404--23237';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Silver Wing™ ABS"+'~'+'14526--23675';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 Silver Wing™ Base"+'~'+'14526--23674';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 ST1300 ABS"+'~'+'14519--23652';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 ST1300 Base"+'~'+'14519--23653';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 TRX™ 250EX"+'~'+'14383--23170';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 TRX™ 300EX"+'~'+'14383--24527';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 TRX™ 400EX"+'~'+'14383--23168';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 TRX™ 450R (Electric Start)"+'~'+'14383--23172';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 TRX™ 450R (Kick Start)"+'~'+'14383--23171';
arr_model['1']['2'] = arr_model['1']['2']+','+"2007 TRX™ 90"+'~'+'14383--23169';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 VTX™ 1300 C"+'~'+'14524--23663';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 VTX™ 1300 R"+'~'+'14524--23664';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 VTX™ 1300 S"+'~'+'14524--23662';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 VTX™ 1800C Spec 1"+'~'+'14540--23713';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 VTX™ 1800F Spec 1"+'~'+'14542--23718';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 VTX™ 1800F Spec 2"+'~'+'14542--23719';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 VTX™ 1800F Spec 3"+'~'+'14542--23720';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 VTX™ 1800N Spec 1"+'~'+'14543--23721';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 VTX™ 1800N Spec 2"+'~'+'14543--23722';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 VTX™ 1800N Spec 3"+'~'+'14543--23723';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 VTX™ 1800R Spec 1"+'~'+'14544--23724';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 VTX™ 1800R Spec 2"+'~'+'14544--23725';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 VTX™ 1800R Spec 3"+'~'+'14544--23726';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 VTX™ 1800T Spec 1"+'~'+'14545--23727';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 VTX™ 1800T Spec 2"+'~'+'14545--23728';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 XR 650L"+'~'+'14387--24385';
arr_model['4']['2'] = arr_model['4']['2']+','+"2007 XR 650R"+'~'+'14387--23183';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Bayou® 250"+'~'+'14421--23297';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Brute Force™ 650 4x4"+'~'+'14423--23304';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Brute Force™ 650 4x4 Camo"+'~'+'14423--23305';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Brute Force™ 650 4x4i"+'~'+'14423--23316';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Brute Force™ 650 4x4i (Galaxy Silver)"+'~'+'14423--23317';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Brute Force™ 650 4x4i Camo"+'~'+'14423--23318';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Brute Force™ 750 4x4i"+'~'+'14423--23303';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Brute Force™ 750 4x4i (Blue)"+'~'+'14423--23319';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Brute Force™ 750 4x4i Camo"+'~'+'14423--23306';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Brute Force™ 750 4x4i NRA"+'~'+'14423--23320';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 Eliminator® 125"+'~'+'14569--23800';
arr_model['3']['3'] = arr_model['3']['3']+','+"2007 Jet Ski® 800 SX-R™"+'~'+'14586--23840';
arr_model['3']['3'] = arr_model['3']['3']+','+"2007 Jet Ski® STX™ -12F"+'~'+'14587--23842';
arr_model['3']['3'] = arr_model['3']['3']+','+"2007 Jet Ski® STX™ -15F"+'~'+'14587--23841';
arr_model['3']['3'] = arr_model['3']['3']+','+"2007 Jet Ski® Ultra® 250X"+'~'+'14588--23843';
arr_model['3']['3'] = arr_model['3']['3']+','+"2007 Jet Ski® Ultra® LX"+'~'+'14588--23844';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 KFX® 50"+'~'+'14399--23218';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 KFX® 700"+'~'+'14399--23221';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 KFX® 90"+'~'+'14399--23219';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 KLR 650"+'~'+'14398--23217';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 KLX™ 110"+'~'+'14396--23206';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 KLX™ 250S"+'~'+'14396--23799';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 KLX™ 300R"+'~'+'14396--23209';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 KX™ 100"+'~'+'14397--23213';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 KX™ 250"+'~'+'14397--23215';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 KX™ 250F"+'~'+'14397--23214';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 KX™ 450F"+'~'+'14397--23216';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 KX™ 65"+'~'+'14397--23211';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 KX™ 85"+'~'+'14397--23212';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Mule™ 3000"+'~'+'13407--23357';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Mule™ 3010 4x4"+'~'+'13407--23358';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Mule™ 3010 4x4 Camo"+'~'+'13407--23359';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Mule™ 3010 4x4 Diesel"+'~'+'13407--23360';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Mule™ 3010 Trans 4x4"+'~'+'13407--23361';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Mule™ 3010 Trans 4x4 Camo"+'~'+'13407--23362';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Mule™ 3010 Trans 4x4 Diesel"+'~'+'13407--21579';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Mule™ 600"+'~'+'13407--23354';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Mule™ 610 4x4"+'~'+'13407--23355';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Mule™ 610 4x4 Camo"+'~'+'13407--23356';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 Ninja 250R"+'~'+'14403--23781';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 Ninja 500R"+'~'+'14403--23235';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 Ninja 650R"+'~'+'14403--23782';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 Ninja ZX™-10R"+'~'+'14403--23784';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 Ninja ZX™-14"+'~'+'14403--23785';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 Ninja ZX™-6R"+'~'+'14403--23783';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Prairie® 360"+'~'+'14422--23300';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Prairie® 360 4x4"+'~'+'14422--23299';
arr_model['1']['3'] = arr_model['1']['3']+','+"2007 Prairie® 360 4x4 Camo"+'~'+'14422--23301';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 Vulcan 1500 Classic"+'~'+'14572--23810';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 Vulcan 1600 Classic"+'~'+'14573--23813';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 Vulcan 1600 Mean Streak™"+'~'+'14573--23812';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 Vulcan 1600 Nomad™"+'~'+'14573--23814';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 Vulcan 2000 Base"+'~'+'14400--23815';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 Vulcan 2000 Classic"+'~'+'14400--23816';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 Vulcan 2000 Classic LT"+'~'+'14400--23224';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 Vulcan 500 LTD"+'~'+'14570--23806';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 Vulcan 900 Classic"+'~'+'14571--23807';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 Vulcan 900 Classic LT"+'~'+'14571--23808';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 Vulcan 900 Custom"+'~'+'14571--23809';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 Z 1000"+'~'+'14568--23797';
arr_model['4']['3'] = arr_model['4']['3']+','+"2007 ZZR® 600"+'~'+'14402--23233';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 50 Adventure Mini"+'~'+'14512--23618';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 50 Adventure Senior"+'~'+'14512--23619';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 640 Adventure LC4"+'~'+'14753--24280';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 950 Super Enduro R"+'~'+'14760--24295';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 990 Adventure LC8"+'~'+'14755--24285';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 990 Adventure S"+'~'+'14755--24286';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 EXC 450 Racing"+'~'+'14667--24035';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 EXC 525 Racing"+'~'+'14667--24036';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 SMR 450"+'~'+'14779--24353';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 SMR 560"+'~'+'14779--24352';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 Super Duke 990"+'~'+'14531--23690';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 Supermoto 690"+'~'+'14657--24271';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 Supermoto 950"+'~'+'14657--24020';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 SX 105"+'~'+'14515--23661';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 SX 125"+'~'+'14515--23951';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 SX 144"+'~'+'14515--24055';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 SX 250"+'~'+'14515--23952';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 SX 250 F"+'~'+'14515--23955';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 SX 450 F"+'~'+'14515--23956';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 SX 50"+'~'+'14515--23630';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 SX 50 Junior"+'~'+'14515--23629';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 SX 505 F"+'~'+'14515--24054';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 SX 65"+'~'+'14515--23632';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 SX 85 (17/14)"+'~'+'14515--23633';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 XC 200"+'~'+'14525--23667';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 XC 200 W"+'~'+'14525--23671';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 XC 250"+'~'+'14525--23957';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 XC 250 F"+'~'+'14525--24046';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 XC 250 F W"+'~'+'14525--23687';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 XC 250 W"+'~'+'14525--23665';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 XC 300"+'~'+'14525--23685';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 XC 300 W"+'~'+'14525--23686';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 XC 400 W"+'~'+'14525--24047';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 XC 450"+'~'+'14525--24048';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 XC 450 G-Racing"+'~'+'14525--24017';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 XC 525"+'~'+'14525--24049';
arr_model['4']['21'] = arr_model['4']['21']+','+"2007 XC 525 G-Racing"+'~'+'14525--24018';
arr_model['4']['27'] = arr_model['4']['27']+','+"2007 Agility 125"+'~'+'14597--23863';
arr_model['4']['27'] = arr_model['4']['27']+','+"2007 Agility 50"+'~'+'14597--23862';
arr_model['4']['27'] = arr_model['4']['27']+','+"2007 Bet & Win 150"+'~'+'14596--23861';
arr_model['4']['27'] = arr_model['4']['27']+','+"2007 Grand Vista 250"+'~'+'14593--23852';
arr_model['1']['27'] = arr_model['1']['27']+','+"2007 Mongoose 250"+'~'+'14517--23871';
arr_model['1']['27'] = arr_model['1']['27']+','+"2007 Mongoose 300"+'~'+'14517--23872';
arr_model['1']['27'] = arr_model['1']['27']+','+"2007 Mongoose 50"+'~'+'14517--23646';
arr_model['1']['27'] = arr_model['1']['27']+','+"2007 Mongoose 70"+'~'+'14517--23873';
arr_model['1']['27'] = arr_model['1']['27']+','+"2007 Mongoose 90"+'~'+'14517--23870';
arr_model['1']['27'] = arr_model['1']['27']+','+"2007 MXU 150"+'~'+'14516--23867';
arr_model['1']['27'] = arr_model['1']['27']+','+"2007 MXU 250"+'~'+'14516--23868';
arr_model['1']['27'] = arr_model['1']['27']+','+"2007 MXU 300"+'~'+'14516--23869';
arr_model['1']['27'] = arr_model['1']['27']+','+"2007 MXU 500"+'~'+'14516--23643';
arr_model['4']['27'] = arr_model['4']['27']+','+"2007 People 150"+'~'+'14594--23854';
arr_model['4']['27'] = arr_model['4']['27']+','+"2007 People 250"+'~'+'14594--23855';
arr_model['4']['27'] = arr_model['4']['27']+','+"2007 People 50"+'~'+'14594--23853';
arr_model['4']['27'] = arr_model['4']['27']+','+"2007 People S 125"+'~'+'14595--23859';
arr_model['4']['27'] = arr_model['4']['27']+','+"2007 People S 200"+'~'+'14595--23857';
arr_model['4']['27'] = arr_model['4']['27']+','+"2007 People S 250"+'~'+'14595--23858';
arr_model['4']['27'] = arr_model['4']['27']+','+"2007 People S 50 4T"+'~'+'14595--23856';
arr_model['4']['27'] = arr_model['4']['27']+','+"2007 Super 9 50"+'~'+'14598--23864';
arr_model['4']['27'] = arr_model['4']['27']+','+"2007 Venox 250"+'~'+'14591--23849';
arr_model['4']['27'] = arr_model['4']['27']+','+"2007 Vitality 50 4T"+'~'+'14599--23866';
arr_model['4']['27'] = arr_model['4']['27']+','+"2007 Xciting 250"+'~'+'14592--23851';
arr_model['4']['27'] = arr_model['4']['27']+','+"2007 Xciting 500"+'~'+'14592--23850';
arr_model['4']['17'] = arr_model['4']['17']+','+"2007 BV 250"+'~'+'14624--23933';
arr_model['4']['17'] = arr_model['4']['17']+','+"2007 BV 500"+'~'+'14624--23932';
arr_model['4']['17'] = arr_model['4']['17']+','+"2007 Fly 150"+'~'+'14623--23930';
arr_model['4']['17'] = arr_model['4']['17']+','+"2007 Fly 50"+'~'+'14623--24213';
arr_model['4']['17'] = arr_model['4']['17']+','+"2007 MP3 Three Wheeler"+'~'+'14736--24233';
arr_model['4']['17'] = arr_model['4']['17']+','+"2007 X9 Evolution 500"+'~'+'14622--23929';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 120 Base"+'~'+'13445--21710';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Hawkeye 4x2"+'~'+'14486--23530';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Hawkeye 4x4"+'~'+'14486--23529';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Hawkeye 4x4 Sunset Red (Limited Edition)"+'~'+'14486--24149';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 IQ 600 HO"+'~'+'13393--21553';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 IQ 600 HO CFI"+'~'+'13393--21631';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 IQ Dragon"+'~'+'13393--21640';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 IQ FST"+'~'+'13393--21639';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 IQ Cruiser FST"+'~'+'13434--21686';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 IQ LX 600 HO CFI"+'~'+'13425--21646';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 IQ LX FST"+'~'+'13425--21647';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 IQ Touring 600 HO CFI"+'~'+'13435--23528';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 IQ Touring FS"+'~'+'13435--21688';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 IQ Touring FST"+'~'+'13435--21687';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 LX 340"+'~'+'13426--21648';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 LX 550"+'~'+'13426--21649';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Outlaw™ 500"+'~'+'14487--23532';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Outlaw™ 525"+'~'+'14487--23533';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Outlaw™ 90"+'~'+'14487--23613';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Phoenix™ 200"+'~'+'14499--23563';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Phoenix™ 200 Pink (Limited Edition)"+'~'+'14499--24150';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Predator 50"+'~'+'14500--23612';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Predator 50 Pink (Limited Edition)"+'~'+'14500--24151';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Predator 500"+'~'+'14500--23565';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Predator 90 Pink (Limited Edition)"+'~'+'14500--24152';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Ranger 2x4"+'~'+'14698--24119';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Ranger 4x4 EFI"+'~'+'14698--24122';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Ranger 6x6 EFI"+'~'+'14698--24121';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Ranger XP"+'~'+'14698--24124';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Ranger XP Midnight Red (Limited Edition)"+'~'+'14698--24132';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Ranger XP Mossy Oak™ (Limited Edition)"+'~'+'14698--24131';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Ranger XP Orange Crush (Limited Edition)"+'~'+'14698--24134';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Ranger XP Pearl White (Limited Edition)"+'~'+'14698--24130';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Ranger XP Turbo Silver (Limited Edition)"+'~'+'14698--24133';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 RMK® 600 HO 144"+'~'+'13394--21623';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 RMK® 600 HO 155"+'~'+'13394--21554';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 RMK® Dragon"+'~'+'13394--21625';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 RMK® Trail"+'~'+'13394--21624';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Sawtooth Base"+'~'+'14488--23534';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Scrambler™ 500"+'~'+'14497--23558';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Sportsman® 450"+'~'+'14502--23576';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Sportsman® 500 EFI"+'~'+'14502--23577';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Sportsman® 500 EFI Deluxe"+'~'+'14502--23583';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Sportsman® 500 EFI Stealth Black (Limited Edition)"+'~'+'14502--24144';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Sportsman® 500 EFI Sunset Red (Limited Edition)"+'~'+'14502--24145';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Sportsman® 6x6"+'~'+'14502--23582';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Sportsman® 700 EFI"+'~'+'14502--23579';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Sportsman® 800 EFI"+'~'+'14502--23580';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Sportsman® 800 EFI Deluxe"+'~'+'14502--23586';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Sportsman® 90"+'~'+'14502--23573';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 Super Sport 550"+'~'+'13444--21708';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 SwitchBack™ 600 HO"+'~'+'13422--21627';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 SwitchBack™ 600 HO CFI"+'~'+'13422--21630';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 SwitchBack™ FST"+'~'+'13422--21629';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 Touring 340"+'~'+'13442--21706';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 Touring Trail Deluxe"+'~'+'13442--21705';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 Trail Boss® 330"+'~'+'14489--23535';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 WideTrak™ LX"+'~'+'13441--21704';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 X2 500 EFI"+'~'+'14484--23515';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 X2 500 EFI Deluxe"+'~'+'14484--23516';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 X2 500 EFI Stone Beige (Limited Edition)"+'~'+'14484--24148';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 X2 800 EFI"+'~'+'14484--23519';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 X2 800 EFI Deluxe"+'~'+'14484--23520';
arr_model['1']['23'] = arr_model['1']['23']+','+"2007 X2 800 EFI Sunset Red (Limited Edition)"+'~'+'14484--24153';
arr_model['2']['23'] = arr_model['2']['23']+','+"2007 XC SP 500"+'~'+'13443--21707';
arr_model['3']['28'] = arr_model['3']['28']+','+"2007 3D™ DI"+'~'+'14548--23733';
arr_model['3']['28'] = arr_model['3']['28']+','+"2007 GTI™ 130 SE"+'~'+'14549--23735';
arr_model['3']['28'] = arr_model['3']['28']+','+"2007 GTI™ 155 SE"+'~'+'14549--23736';
arr_model['3']['28'] = arr_model['3']['28']+','+"2007 GTI™ Base"+'~'+'14549--23734';
arr_model['3']['28'] = arr_model['3']['28']+','+"2007 GTX 155 Wake"+'~'+'14551--23742';
arr_model['3']['28'] = arr_model['3']['28']+','+"2007 GTX 215 Wake"+'~'+'14551--23765';
arr_model['3']['28'] = arr_model['3']['28']+','+"2007 GTX 4-TEC™"+'~'+'14551--23739';
arr_model['3']['28'] = arr_model['3']['28']+','+"2007 GTX Limited"+'~'+'14551--23740';
arr_model['3']['28'] = arr_model['3']['28']+','+"2007 RXP™ 155"+'~'+'14546--23731';
arr_model['3']['28'] = arr_model['3']['28']+','+"2007 RXP™ 215"+'~'+'14546--23730';
arr_model['3']['28'] = arr_model['3']['28']+','+"2007 RXT™ Base"+'~'+'14547--23732';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Expedition Sport 550F"+'~'+'14388--23191';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Expedition Sport V-800"+'~'+'14388--23192';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Expedition TUV 600 H.O. SDI"+'~'+'14389--23193';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Expedition TUV V-800"+'~'+'14389--23194';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Freestyle Back Country"+'~'+'13450--21733';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Freestyle Park"+'~'+'13450--21734';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Freestyle Session 300F"+'~'+'13450--21731';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Freestyle Session 550F"+'~'+'13450--21732';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 GSX Fan 550F"+'~'+'14345--23046';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 GSX Limited 600 H.O. SDI"+'~'+'14347--23050';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 GSX Limited 800 H.O. Power T.E.K."+'~'+'14347--23051';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 GSX Sport 500 SS"+'~'+'14346--23048';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 GSX Sport 600 H.O. SDI"+'~'+'14346--23049';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 GTX Fan 550F"+'~'+'14348--23053';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 GTX Limited 600 H.O. SDI"+'~'+'14355--23068';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 GTX Limited 800 H.O. Power T.E.K."+'~'+'14355--23067';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 GTX Sport 500 SS"+'~'+'14354--23065';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 GTX Sport 600 H.O. SDI"+'~'+'14354--23066';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Legend Touring V-800"+'~'+'14377--23156';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Legend Trail V-800"+'~'+'14371--23117';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Mach Z Adrenaline 1000 SDI"+'~'+'13451--21735';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Mach Z X 1000 SDI"+'~'+'13455--21744';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Mini Z 120"+'~'+'14359--23078';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 MX Z  X-RS 600 H.O. SDI"+'~'+'13466--21769';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 MX Z  X-RS 800 H.O. Power T.E.K."+'~'+'13466--21770';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 MX Z 550 X 550F"+'~'+'13440--21700';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 MX Z Adrenaline 500 SS"+'~'+'13458--21754';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 MX Z Adrenaline 600 H.O."+'~'+'13458--21753';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 MX Z Adrenaline 600 H.O. SDI"+'~'+'13458--21755';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 MX Z Adrenaline 800 H.O. Power T.E.K"+'~'+'13458--21756';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 MX Z Blizzard 600 H.O. SDI"+'~'+'13464--21766';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 MX Z Blizzard 800 H.O. Power T.E.K."+'~'+'13464--21767';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 MX Z Fan 550F"+'~'+'13438--21698';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 MX Z Renegade 1000 SDI"+'~'+'14356--23072';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 MX Z Renegade 600 H.O. SDI"+'~'+'14356--23071';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 MX Z Renegade 800 H.O. Power T.E.K."+'~'+'14356--23070';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 MX Z Renegade X 1000 SDI"+'~'+'14357--23075';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 MX Z Renegade X 600 H.O. SDI"+'~'+'14357--23074';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 MX Z Renegade X 800 H.O. Power T.E.K."+'~'+'14357--23073';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 MX Z Trail 500 SS"+'~'+'13439--21699';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 MX Z X 600 H.O. SDI"+'~'+'13463--21764';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 MX Z X 800 H.O. Power T.E.K."+'~'+'13463--21765';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Skandic® LT 440F"+'~'+'14390--23195';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Skandic® SUV 550F"+'~'+'14395--23204';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Skandic® SUV 600"+'~'+'14395--23205';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Skandic® SWT 550F"+'~'+'14393--23200';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Skandic® SWT V-800"+'~'+'14393--23201';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Skandic® Tundra 300F"+'~'+'14391--23196';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Skandic® Tundra V-800"+'~'+'14391--23197';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Skandic® WT 550F"+'~'+'14392--23198';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Skandic® WT 600"+'~'+'14392--23199';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Summit  X 144 800R Power T.E.K."+'~'+'14384--23173';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Summit  X 151 800R Power T.E.K."+'~'+'14384--23175';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Summit  X 159 800R Power T.E.K."+'~'+'14384--23174';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Summit  X-RS 151 800R Power T.E.K."+'~'+'14385--23178';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Summit  X-RS 159 800R Power T.E.K."+'~'+'14385--23177';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Summit Adrenaline 144 600 H.O. SDI"+'~'+'14379--23158';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Summit Adrenaline 144 800R Power T.E.K."+'~'+'14379--23160';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Summit Adrenaline 151 800R Power T.E.K."+'~'+'14379--23159';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Summit Fan 550F"+'~'+'14378--23157';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Summit Highmark 151 1000 SDI"+'~'+'14380--23161';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Summit Highmark 162 1000 SDI"+'~'+'14380--23162';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Summit Highmark X 151 1000 SDI"+'~'+'14381--23163';
arr_model['2']['35'] = arr_model['2']['35']+','+"2007 Summit Highmark X 162 1000 SDI"+'~'+'14381--23164';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 Bandit 1250"+'~'+'14558--23796';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 Bandit 1250 ABS"+'~'+'14558--23766';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 Boulevard C50"+'~'+'14439--23384';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 Boulevard C50 Black"+'~'+'14439--23385';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 Boulevard C50C"+'~'+'14439--23805';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 Boulevard C50T"+'~'+'14439--23389';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 Boulevard C90"+'~'+'14439--23382';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 Boulevard C90 Black"+'~'+'14439--23383';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 Boulevard C90T"+'~'+'14439--23388';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 Boulevard M109R"+'~'+'14439--23390';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 Boulevard M109R Limited Edition"+'~'+'14439--23804';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 Boulevard M50"+'~'+'14439--23386';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 Boulevard M50 Limited"+'~'+'14439--23387';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 Boulevard S40"+'~'+'14439--23381';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 Boulevard S50"+'~'+'14439--23380';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 Boulevard S83"+'~'+'14439--23379';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 Burgman 400"+'~'+'14437--23374';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 Burgman 650"+'~'+'14437--23803';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 Burgman 650 Executive"+'~'+'14437--23802';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 DR 200SE"+'~'+'14408--23252';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 DR 650SE"+'~'+'14408--23253';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 DR-Z 125"+'~'+'14414--23265';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 DR-Z 125L"+'~'+'14414--23264';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 DR-Z 250"+'~'+'14414--23263';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 DR-Z 400E"+'~'+'14414--23262';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 DR-Z 400S Base"+'~'+'14413--23261';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 DR-Z 400SM Base"+'~'+'14411--23256';
arr_model['1']['4'] = arr_model['1']['4']+','+"2007 Eiger™ 400 4X4 Automatic"+'~'+'14436--23367';
arr_model['1']['4'] = arr_model['1']['4']+','+"2007 Eiger™ 400 4X4 Automatic Camouflage"+'~'+'14436--23368';
arr_model['1']['4'] = arr_model['1']['4']+','+"2007 Eiger™ 400 4X4 Semi-Automatic"+'~'+'14436--23370';
arr_model['1']['4'] = arr_model['1']['4']+','+"2007 Eiger™ 400 4X4 Semi-Automatic Camouflage"+'~'+'14436--23369';
arr_model['1']['4'] = arr_model['1']['4']+','+"2007 Eiger™ 400 Hunter X Hunter Edition"+'~'+'14436--23371';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 GS 500F"+'~'+'14564--23786';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 GSX-R 1000"+'~'+'14563--23776';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 GSX-R 600"+'~'+'14563--23777';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 GSX-R 750"+'~'+'14563--23778';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 GZ 250"+'~'+'14417--23283';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 Hayabusa™ 1300"+'~'+'14559--23767';
arr_model['1']['4'] = arr_model['1']['4']+','+"2007 KingQuad 450 4X4"+'~'+'14427--23821';
arr_model['1']['4'] = arr_model['1']['4']+','+"2007 KingQuad 450 Camouflage 4X4"+'~'+'14427--23822';
arr_model['1']['4'] = arr_model['1']['4']+','+"2007 KingQuad 700 4X4"+'~'+'14427--23331';
arr_model['1']['4'] = arr_model['1']['4']+','+"2007 KingQuad 700 Camouflage 4X4"+'~'+'14427--23332';
arr_model['1']['4'] = arr_model['1']['4']+','+"2007 Ozark 250"+'~'+'14431--23348';
arr_model['1']['4'] = arr_model['1']['4']+','+"2007 QuadRacer LT-R450"+'~'+'14575--23820';
arr_model['1']['4'] = arr_model['1']['4']+','+"2007 QuadSport® Z250"+'~'+'14433--23351';
arr_model['1']['4'] = arr_model['1']['4']+','+"2007 QuadSport® Z400"+'~'+'14433--23350';
arr_model['1']['4'] = arr_model['1']['4']+','+"2007 QuadSport® Z50"+'~'+'14433--23353';
arr_model['1']['4'] = arr_model['1']['4']+','+"2007 QuadSport® Z90"+'~'+'14433--23352';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 RM 125"+'~'+'14415--23269';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 RM 250"+'~'+'14415--23270';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 RM 85"+'~'+'14415--23267';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 RM 85L"+'~'+'14415--23268';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 RM-Z 250"+'~'+'14418--23284';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 RM-Z 450"+'~'+'14418--23285';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 RM-Z 450 Carmichael Replica"+'~'+'14418--23287';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 SV 1000S"+'~'+'14565--23787';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 SV 650"+'~'+'14565--23789';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 SV 650 ABS"+'~'+'14565--23795';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 SV 650S"+'~'+'14565--23788';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 SV 650S ABS"+'~'+'14565--23790';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 V-Strom 1000"+'~'+'14420--23801';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 V-Strom 650"+'~'+'14420--23290';
arr_model['4']['4'] = arr_model['4']['4']+','+"2007 V-Strom 650 ABS"+'~'+'14420--23330';
arr_model['1']['4'] = arr_model['1']['4']+','+"2007 Vinson™ 500 4X4 Semi-Automatic"+'~'+'14428--23335';
arr_model['1']['4'] = arr_model['1']['4']+','+"2007 Vinson™ 500 4X4 Semi-Automatic Camouflage Edition"+'~'+'14428--23336';
arr_model['1']['4'] = arr_model['1']['4']+','+"2007 Vinson™ Automatic 500 4X4"+'~'+'14428--23334';
arr_model['1']['4'] = arr_model['1']['4']+','+"2007 Vinson™ Automatic 500 4X4 Camouflage Edition"+'~'+'14428--23333';
arr_model['4']['16'] = arr_model['4']['16']+','+"2007 America Base"+'~'+'14576--23823';
arr_model['4']['16'] = arr_model['4']['16']+','+"2007 Bonneville Base"+'~'+'14562--23773';
arr_model['4']['16'] = arr_model['4']['16']+','+"2007 Bonneville Black"+'~'+'14562--23775';
arr_model['4']['16'] = arr_model['4']['16']+','+"2007 Bonneville T100"+'~'+'14562--23774';
arr_model['4']['16'] = arr_model['4']['16']+','+"2007 Daytona 675"+'~'+'14561--23771';
arr_model['4']['16'] = arr_model['4']['16']+','+"2007 Rocket III Base"+'~'+'14577--23825';
arr_model['4']['16'] = arr_model['4']['16']+','+"2007 Rocket III Classic"+'~'+'14577--23824';
arr_model['4']['16'] = arr_model['4']['16']+','+"2007 Rocket III Classic Tourer"+'~'+'14577--23826';
arr_model['4']['16'] = arr_model['4']['16']+','+"2007 Scrambler Base"+'~'+'14556--23760';
arr_model['4']['16'] = arr_model['4']['16']+','+"2007 Speed Triple"+'~'+'14560--23770';
arr_model['4']['16'] = arr_model['4']['16']+','+"2007 Speedmaster Base"+'~'+'14578--23827';
arr_model['4']['16'] = arr_model['4']['16']+','+"2007 Sprint ST"+'~'+'14579--23828';
arr_model['4']['16'] = arr_model['4']['16']+','+"2007 Sprint ST ABS"+'~'+'14579--23829';
arr_model['4']['16'] = arr_model['4']['16']+','+"2007 Street Triple"+'~'+'14838--24562';
arr_model['4']['16'] = arr_model['4']['16']+','+"2007 Thruxton 900"+'~'+'14555--23759';
arr_model['4']['16'] = arr_model['4']['16']+','+"2007 Tiger 1050"+'~'+'14557--23763';
arr_model['4']['16'] = arr_model['4']['16']+','+"2007 Tiger 1050 ABS"+'~'+'14557--23764';
arr_model['4']['11'] = arr_model['4']['11']+','+"2007 Hammer™ Base"+'~'+'14479--23500';
arr_model['4']['11'] = arr_model['4']['11']+','+"2007 Hammer™ S"+'~'+'14479--23512';
arr_model['4']['11'] = arr_model['4']['11']+','+"2007 Kingpin™ Base"+'~'+'14478--23499';
arr_model['4']['11'] = arr_model['4']['11']+','+"2007 Kingpin™ Tour"+'~'+'14478--23511';
arr_model['4']['11'] = arr_model['4']['11']+','+"2007 Ness Signature Series JackPot™"+'~'+'14480--23501';
arr_model['4']['11'] = arr_model['4']['11']+','+"2007 Vegas™ 8-Ball"+'~'+'14477--23498';
arr_model['4']['11'] = arr_model['4']['11']+','+"2007 Vegas™ Base"+'~'+'14477--23496';
arr_model['4']['11'] = arr_model['4']['11']+','+"2007 Vegas™ JackPot™"+'~'+'14477--23497';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 Apex ER"+'~'+'13424--23091';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 Apex GT"+'~'+'13424--23092';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 Apex Mountain"+'~'+'13424--23064';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 Apex Mountain SE"+'~'+'13424--21642';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 Apex RTX"+'~'+'13424--23093';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 Apex RTX With Reverse"+'~'+'13424--23094';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 Attak Base"+'~'+'13421--23063';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 Attak GT"+'~'+'13421--21626';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Big Bear 250"+'~'+'14419--23310';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Big Bear 400 IRS 5-Speed 4X4"+'~'+'14419--23286';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Big Bear 400 IRS 5-Speed 4X4 Exploring Edition"+'~'+'14419--23288';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 C3 Base"+'~'+'14469--23474';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 FJR 1300A"+'~'+'14567--23794';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 FJR 1300AE"+'~'+'14567--23793';
arr_model['3']['1'] = arr_model['3']['1']+','+"2007 FX Base"+'~'+'14535--23697';
arr_model['3']['1'] = arr_model['3']['1']+','+"2007 FX Cruiser"+'~'+'14535--23699';
arr_model['3']['1'] = arr_model['3']['1']+','+"2007 FX Cruiser High Output"+'~'+'14535--23700';
arr_model['3']['1'] = arr_model['3']['1']+','+"2007 FX High Output"+'~'+'14535--23698';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 FZ 1"+'~'+'14566--23791';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 FZ 6"+'~'+'14566--23792';
arr_model['3']['1'] = arr_model['3']['1']+','+"2007 GP 1300R"+'~'+'14533--23695';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Grizzly 125 Automatic"+'~'+'14416--23308';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Grizzly 350 Auto 4x4"+'~'+'14416--23296';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Grizzly 350 Automatic"+'~'+'14416--23307';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Grizzly 350 IRS Auto 4x4"+'~'+'14416--23282';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Grizzly 400 Auto 4x4"+'~'+'14416--23294';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Grizzly 450 Auto 4x4"+'~'+'14416--23292';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Grizzly 450 Auto 4x4 Outdoorsman Edition"+'~'+'14416--23293';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Grizzly 450 Auto 4x4 Special Edition"+'~'+'14416--23906';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Grizzly 660 Auto 4x4"+'~'+'14416--23291';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Grizzly 700 FI 4x4 Auto Ducks Unlimited Edition"+'~'+'14416--23281';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Grizzly 700 FI 4x4 Auto Outdoorsman Edition"+'~'+'14416--23280';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Grizzly 700 FI Auto 4x4"+'~'+'14416--23273';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Grizzly 700 FI Auto 4x4 Exporing Edition"+'~'+'14416--23904';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Grizzly 700 FI Auto 4x4 Special Edition"+'~'+'14416--23905';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Grizzly 80"+'~'+'14416--23309';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Majesty 400"+'~'+'14466--23470';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Morphous Base"+'~'+'14465--23469';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 Nytro® Base"+'~'+'14361--23089';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 Nytro® ER"+'~'+'14361--23090';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 Phazer Base"+'~'+'13413--21593';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 Phazer FX"+'~'+'13413--21596';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 Phazer GT"+'~'+'13413--21597';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 Phazer Mountain Lite"+'~'+'13413--21598';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 PW 50"+'~'+'14483--23514';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Raptor 350"+'~'+'14426--23339';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Raptor 350 Special Edition"+'~'+'14426--23340';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Raptor 50"+'~'+'14426--23342';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Raptor 700R"+'~'+'14426--23324';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Raptor 700R GYTR Edition"+'~'+'14426--23338';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Raptor 700R SE"+'~'+'14426--23337';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Raptor 80"+'~'+'14426--23341';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Rhino 450 Auto 4x4"+'~'+'14424--23314';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Rhino 450 Auto 4x4 Special Edition"+'~'+'14424--23907';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Rhino 660 Auto 4x4"+'~'+'14424--23311';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Rhino 660 Auto 4x4 Ducks Unlimited Edition"+'~'+'14424--23323';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Rhino 660 Auto 4x4 Exploring Edition"+'~'+'14424--23313';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Rhino 660 Auto 4x4 Special Edition"+'~'+'14424--23312';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Rhino 660 Auto 4x4 Sport Edition"+'~'+'14424--23321';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Road Star Base"+'~'+'14456--23448';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Road Star Midnight"+'~'+'14456--23447';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Road Star Midnight Silverado"+'~'+'14456--23445';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Road Star Silverado"+'~'+'14456--23446';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Roadliner Base"+'~'+'14458--23457';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Roadliner Midnight"+'~'+'14458--23455';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Roadliner S"+'~'+'14458--23456';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Royal Star Midnight Tour Deluxe"+'~'+'14462--23467';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Royal Star Midnight Venture"+'~'+'14462--23466';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Royal Star Tour Deluxe"+'~'+'14462--23464';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Royal Star Venture"+'~'+'14462--23463';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 RS Rage"+'~'+'13423--23083';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 RS Rage GT"+'~'+'13423--21633';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 RS Vector ER"+'~'+'13423--23087';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 RS Vector GT"+'~'+'13423--23088';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 RS Vector Mountain"+'~'+'13423--23085';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 RS Vector Mountain SE"+'~'+'13423--23086';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 RS Venture"+'~'+'13423--23084';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 RS Venture GT"+'~'+'13423--21650';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Stratoliner Base"+'~'+'14461--23462';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Stratoliner Midnight"+'~'+'14461--23460';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Stratoliner S"+'~'+'14461--23461';
arr_model['3']['1'] = arr_model['3']['1']+','+"2007 Superjet Base"+'~'+'14534--23696';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 TT-R 125E"+'~'+'14482--23508';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 TT-R 125L"+'~'+'14482--23506';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 TT-R 125LE"+'~'+'14482--23507';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 TT-R 230"+'~'+'14482--23505';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 TT-R 50E"+'~'+'14482--23510';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 TT-R 90E"+'~'+'14482--23509';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 TW 200"+'~'+'14509--23615';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 V Max Base"+'~'+'14447--23411';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 V Star Classic"+'~'+'14444--23405';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 V Star Custom"+'~'+'14444--23403';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 V Star Silverado"+'~'+'14444--23404';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 V Star 1100 Classic"+'~'+'14445--23407';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 V Star 1100 Custom"+'~'+'14445--23406';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 V Star 1100 Silverado"+'~'+'14445--23408';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 V Star 1300 Base"+'~'+'14443--23401';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 V Star 1300 Tourer"+'~'+'14443--23402';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 Venture Lite"+'~'+'13420--21621';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Vino 125"+'~'+'14467--23472';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Vino Classic"+'~'+'14467--23471';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Virago 250"+'~'+'14448--23412';
arr_model['2']['1'] = arr_model['2']['1']+','+"2007 VK Professional"+'~'+'14362--23095';
arr_model['3']['1'] = arr_model['3']['1']+','+"2007 VX Base"+'~'+'14536--23704';
arr_model['3']['1'] = arr_model['3']['1']+','+"2007 VX Cruiser"+'~'+'14536--23705';
arr_model['3']['1'] = arr_model['3']['1']+','+"2007 VX Deluxe"+'~'+'14536--23702';
arr_model['3']['1'] = arr_model['3']['1']+','+"2007 VX Sport"+'~'+'14536--23703';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Warrior Base"+'~'+'14446--23409';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 Warrior Midnight"+'~'+'14446--23410';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Wolverine® 350"+'~'+'14442--23397';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Wolverine® 450 4x4"+'~'+'14442--23396';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 Wolverine® 450 4x4 Special Edition"+'~'+'14442--23480';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 WR 250F"+'~'+'14481--23502';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 WR 450F"+'~'+'14481--23503';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 XT 225"+'~'+'14508--23614';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 YFZ 450"+'~'+'14429--23343';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 YFZ 450 Bill Ballance Edition"+'~'+'14429--23344';
arr_model['1']['1'] = arr_model['1']['1']+','+"2007 YFZ 450 SE"+'~'+'14429--23345';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 YZ 125"+'~'+'14472--23486';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 YZ 250"+'~'+'14472--23483';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 YZ 250F"+'~'+'14472--23484';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 YZ 450F"+'~'+'14472--23482';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 YZ 85"+'~'+'14472--23487';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 YZF 600R"+'~'+'14505--23592';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 YZF R1"+'~'+'14505--23779';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 YZF R6"+'~'+'14505--23780';
arr_model['4']['1'] = arr_model['4']['1']+','+"2007 YZF R6S"+'~'+'14505--23596';
function populate_make()
 { 
 var k;
 var f;
 var item_cd = window.document.form2.Power_sport_type.value;
var make_cd = window.document.form2.Power_sport_make.value;
document.form2.Power_sport_make.options.length = 0;
 document.form2.Power_sport_model.options.length = 0;
 document.form2.Power_sport_make.options[0] = new Option('Choose Make', 0);
 document.form2.Power_sport_model.options[0] = new Option('Choose Model', 0);
 
 sname = arr_make[item_cd].split(',')
sid = arr_make[item_cd].split(',')
statelen = sname.length 
for (h=1; h<statelen; h++)
 {
k = h + 1;
 f = sid[h].split('~');
 document.form2.Power_sport_make.options[h] = new Option(f[0],f[1]);
 
}
 }
function populate_model() {
var model_arr_split;
 var k;
 var f;
 var model_arr_length;
 var item_cd = window.document.form2.Power_sport_type.value;
 var make_cd = window.document.form2.Power_sport_make.value;
document.form2.Power_sport_model.options.length = 0;
document.form2.Power_sport_model.options[0] = new Option('Choose Model', 0);
model_arr_split = arr_model[item_cd][make_cd].split(',');
model_arr_length = model_arr_split.length
for (h=1; h<model_arr_length; h++) {
 k = h + 1;
 f = model_arr_split[h].split('~');
 document.form2.Power_sport_model.options[h] = new Option(f[0],f[1]);
 }
 return false;
 }


function IncludeJavaScript(jsFile)
{
  document.write('<script type="text/javascript" src="'
    + jsFile + '"></scr' + 'ipt>'); 
}

//IncludeJavaScript("http://chat.teamsalesagent.com/tsa/JS/chat_312.aspx")
