/*
Thumber
Guzer 2.0
*/

// Send the thumb vote information //


function thumbIt(vote,CID){

	var url = "/thumbit.php";	
	var params = "CID="+CID+"&vote="+vote;
	xmlHttp.open("POST",url,true);
	xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
	xmlHttp.setRequestHeader("Content-length", params.length);
	xmlHttp.setRequestHeader("Connection", "close");
	xmlHttp.send(params);

	//document.getElementById("thumb").innerHTML = vote;//

}
