function setFavorite(favid)
{
	var thefavoicon = document.getElementById('irestaurantfavo' + favid);

	if (thefavoicon)
	{
		var favosrcstr = new String(thefavoicon.src);
		if (favosrcstr.indexOf('/images/icons/favo.png')!=-1)
		{
			xmlRequest('setFavorite.php','action=addfavorite&bid=' + favid,'idummy');
			thefavoicon.src = '/images/icons/favo_selected.png';
		}
		else
		{
			xmlRequest('setFavorite.php','action=removefavorite&bid=' + favid,'idummy');
			thefavoicon.src = '/images/icons/favo.png';
		}
	}

	return false;
}
