function InsuranceLeadzHealth(zipcode, _type, ni_var1){
	tgUrl = 'https://www.ehealthinsurance.com/ehi/Alliance?allid=AOV28265&type=' + _type;
	_url  = tgUrl + '&zip=' + zipcode + '&sid=' + ni_var1;

	xmlHttp = httpGetObject();
	xmlHttp.onreadystatechange = function(){
		if(xmlHttp.readyState == 4){
			if(xmlHttp.status == 200){
				document.location = _url;
				return false;
			}
		}
	}
	xmlUrl = '/savestat.php?tgUrl=' + escape(tgUrl) + '&AffID=AOV28265&Zip=' + zipcode + '&Nivar=' + ni_var1;
	xmlHttp.open('GET', xmlUrl, true);
	xmlHttp.send(null);
}

function HealthFrame(zipcode, _type, ni_var1){
	tgUrl = 'http://www.insuranceusa.com/health/health-insurance.php';
	_url  = tgUrl + '?zip=' + zipcode + '&sid=' + ni_var1 + '&type=' + _type;

	xmlHttp = httpGetObject();
	xmlHttp.onreadystatechange = function(){
		if(xmlHttp.readyState == 4){
			if(xmlHttp.status == 200){
				document.location = _url;
				return false;
			}
		}
	}
	xmlUrl = '/savestat.php?tgUrl=' + escape(tgUrl) + '&AffID=AOV28265&Zip=' + zipcode + '&Nivar=' + ni_var1;
	xmlHttp.open('GET', xmlUrl, true);
	xmlHttp.send(null);
}
