function impostaHomepage() {
  var myurl = 'http://www.associazionenoie.org/privato/';
  if (document.all) {
    document.body.style.behavior='url(#default#homepage)';
    document.body.setHomePage(myurl);
  } else {
    alert("Siamo spiacenti, il tuo browser non supporta questa funzione");
  }
}

function impostaPreferiti() {
  var myurl   = 'http://www.associazionenoie.org/privato/';
  var mytitle = 'NOI E la SIERRA LEONE';
  if (document.all) { 
    window.external.AddFavorite( myurl, mytitle );
  } else {   
    alert("Siamo spiacenti, il tuo browser non supporta questa funzione");
  }
}

var indiceRigaSel = -1;
function selezionaRiga(indice)
{
   if (indiceRigaSel != -1)
   	 document.getElementById("riga"+indiceRigaSel).className = indiceRigaSel%2==0?"pari":"dispari";
   indiceRigaSel = indice;
   document.getElementById("riga"+indiceRigaSel).className = "selected";
}
