function calculateRating(vote, id)
{
	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null)
	{
		alert ("Your browser does not support AJAX!");
		return;
	}
	var url="http://www.funatico.com/includes/vote.php";
	url=url+"?vote="+vote;
	url=url+"&id="+id;
	var width=vote*10;
	document.getElementById("stars").style.width=width+'%';
	xmlHttp.onreadystatechange=stateChanged2;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
}

function stateChanged2(w)
{ 
	if (xmlHttp.readyState==4)
	{
		document.getElementById("rating").innerHTML=xmlHttp.responseText;
		document.getElementById('star-list').style.visibility='hidden';
		document.getElementById('star-list').style.display='none';
		document.getElementById('thanks-for-vote').style.visibility='visible';
		document.getElementById('thanks-for-vote').style.display='block';
	}
}
