function ibotDealbreaker(x) {
	new Ajax.Request("./ajax_poll.php", 
		{ 
			method: 'post', 
			postBody: 'deal='+x+'&ip='+$F('ibot_ip')+'&id='+$F('ibot_id'),
			onCreate: PollWorking,
			onComplete: PollResponse
		});
}

function ibotRating(x) {
	new Ajax.Request("./ajax_rate.php", 
		{ 
			method: 'post', 
			postBody: 'rate='+x+'&ip='+$F('ibot_ip')+'&id='+$F('ibot_id'),
			onCreate: RateWorking,
			onComplete: RateResponse
		});
}

	function PollWorking(req){$('ibot_poll').innerHTML = '<font color="#009900">Loading...</font>';}
	function PollResponse(req){$('ibot_poll').innerHTML= req.responseText;}
	function RateWorking(req){$('ibot_rating').innerHTML = '<font color="#009900">Loading...</font>';}
	function RateResponse(req){$('ibot_rating').innerHTML= req.responseText;}

