function valorar_noticia(idnoti,valoracio) {
	var strURL = urlBase+"valorar.php";
	var strParm = "idnoticia="+idnoti+"&valorar="+valoracio;
	var myAjax = new Ajax.Updater(
							'intersting_'+idnoti ,
							strURL,
							{
								method: 'get',
								parameters: strParm
							});
}
function reportError(request)
	{
		alert('Sorry. There was an error.');
	}