var xmlhttp;

function XmlHttpObject()
{
	var xmlhttp = null;
	try
	{
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	}
	catch (a)
	{
		try
		{
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch (b)
		{
		}
	}
	if (!xmlhttp && (typeof XMLHttpRequest != 'undefined'))
	{
		xmlhttp = new XMLHttpRequest();
	}
	return xmlhttp;
}

function getCarSpecs()
{
	xmlhttp=XmlHttpObject();
	if (xmlhttp==null){	return;	} 
	xmlhttp.open("POST","ajax/gt_cr_spcs2.php?s="+Math.random(),true);
	xmlhttp.onreadystatechange=getCarSpecsNow; 
	xmlhttp.send(null);
}

function getCarSpecsNow() 
{ 
	if (xmlhttp.readyState==4 || xmlhttp.readyState=="complete")
	{
		document.getElementById("tmsg").innerHTML=xmlhttp.responseText;
	}
	else
	{
		document.getElementById("tmsg").innerHTML='Het occasionaanbod wordt geladen...';
	}
}