function reportThis(id)
{
	var report = prompt('Reason?');
	if (report != null)
	{
		xmlHttp=GetXmlHttpObject();
		if (xmlHttp==null)
		{
			alert ("Your browser does not support AJAX!");
			return;
		}
		var url="http://www.funatico.com/includes/report.php";
		url=url+"?id="+id;
		url=url+"&report="+report;
		xmlHttp.onreadystatechange=stateChanged3;
		xmlHttp.open("GET",url,true);
		xmlHttp.send(null);
	}
}

function stateChanged3(w)
{ 
	if (xmlHttp.readyState==4)
	{
		alert('Thank you for your report.');
	}
}
