// JavaScript Document

function updateVote(vote,car_id) {    
	if (vote >= 1 && vote <= 5) {
		  var url="ajax/update_vote.cfm"
			url=url+"?q="+vote+"&car_id="+car_id
			url=url+"&sid="+Math.random()
			xmlHttp.open("GET",url,true)	  
	}				
    xmlHttp.onreadystatechange = handleResponse;
    xmlHttp.send(null);
	
}
