<!--
function trackit() {
	var ref = document.referrer;
	var url = document.location;
	var xmlHttp;
	try{
		// Firefox, Opera 8.0+, Safari
		xmlHttp=new XMLHttpRequest();
	}
	catch (e){
		// Internet Explorer
		try{
			xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e){
			try{
				xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch (e){
				return false;
			}
		}
	}

	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
			//document.getElementById('s3_tab1').innerHTML = '<p style="padding: 15px; text-align: center; font-weight: bold;">Thank you. Your request has been sent</p><p style="padding: 15px; text-align: center;">You will receive a phone call from Combined Insurance soon</p>';
		}
		else if(xmlHttp.readyState==1){
			//document.getElementById('s3_tab1').innerHTML = '<p style="padding: 15px; text-align: center; font-weight: bold;">Sending data...</p>';
		}
	}
	var params = 'url='+url+'&ref='+ref;
	xmlHttp.open("POST",'scripts/r_tracker.php',true);
	xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
	xmlHttp.setRequestHeader("Content-length", params.length);
	xmlHttp.setRequestHeader("Connection", "close");
	xmlHttp.send(params);
}

trackit();
//-->