function info_aliment_do_vote(page_id, rating, text)
{
	// hide vote selector
	el_hide('rate_div');
	
	// update personnal quote text
	el_update('rating_text', text);
	
	// update rating image
	img_src('rating_img', 'images/etoiles_' + rating + '.gif');
	
	// send vote
	makePostRequest('infoaliment.php?action=vote', 'id=' + page_id + '&rating=' + rating, 'info_aliment_vote_callback');
}

function info_aliment_vote_callback() { }

function printer_friendly(page_id, lang)
{
	var win = pop_window('infoaliment.php?action=print&lang=' + lang + '&id=' + page_id, 'pageprint', '600', '600', 'scrollbars=yes');
}
