function InsuranceLeadzAuto(zipcode, ni_var1){
	//tgUrl = 'https://www.insuranceleadz.com/form/auto';
	tgUrl = 'https://forms.insuranceagents.com/auto/';
	_url = tgUrl + '?zip=' + zipcode + '&a=38402&c=' + ni_var1 + '&t=396';

	
	
	http = httpGetObject();
	http.onreadystatechange = function(){
		if(http.readyState == 4){
			if(http.status == 200){
				document.location = _url;
				return false;
			}
		}
	}
	
	xmlUrl = '/savestat.php?tgUrl=' + escape(tgUrl) + '&Zip=' + zipcode + '&AffID=38402&Nivar=' + ni_var1 + '&Theme=396';
	http.open('GET', xmlUrl, true);
	http.send(null);
}

function AutoFrame(zipcode, ni_var1){
	tgUrl = 'https://www.quotecarinsurance.com/quote_generator/';
	_url = tgUrl + '?zip=' + zipcode + '&a=38402&c=' + ni_var1 + '&t=396';
		
	
	
	http = httpGetObject();
	http.onreadystatechange = function(){
		if(http.readyState == 4){
			if(http.status == 200){
				document.location = _url;
				return false;
			}
		}
	}
	
	xmlUrl = '/savestat.php?tgUrl=' + escape(tgUrl) + '&Zip=' + zipcode + '&AffID=38402&Nivar=' + ni_var1 + '&Theme=396';
	http.open('GET', xmlUrl, true);
	http.send(null);
}
