

function ajax_vote(id,value)
{
	
			new Ajax.Request('ajax_vote.php?id='+id+'&value='+value,{asynchronous:true,method:'GET'});
	
}

function ausgeben(req)
{

	document.getElementById('loading_img').style.visibility='hidden';
	eval(req.responseText);
	
}

