var xmlHttp_delete_record;

function delete_record(record){
	str = record;
	if(!str)return;

	
xmlHttp_delete_record=GetXmlHttpObject_delete_record();
if (xmlHttp_delete_record==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
var url="http://www.oldstockcars.com/lincoln_illinois_62656/delete_record.php";
url=url+"?q="+str;
url=url+"&sid="+Math.random();
xmlHttp_delete_record.onreadystatechange=stateChanged_delete_record;
xmlHttp_delete_record.open("GET",url,true);
xmlHttp_delete_record.send(null);
} 

function stateChanged_delete_record() 
{ 
if (xmlHttp_delete_record.readyState==4)
{ 

	alert(xmlHttp_delete_record.responseText);
	if(xmlHttp_delete_record.responseText == "Record deleted!"){
		location.href='http://www.oldstockcars.com/lincoln_illinois_62656/';
	}
}
}


function GetXmlHttpObject_delete_record()
{
var xmlHttp_delete_record=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp_delete_record=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp_delete_record=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp_delete_record=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp_delete_record;
}
