// clignotement du bouton d'accès
var i = 0;

function shw_acces() {
  if ( i > 1 ) { i = 0; }

  if ( document.getElementById ) {
    document.getElementById("lnk_acces_2").innerHTML = txt_acces[i];
  } else if ( document.all ) {
    document.all["lnk_acces_2"].innerHTML = txt_acces[i];
  }
  window.status = document.title;
  i++;
  timing = setTimeout('shw_acces()', 800);
}

// pour ajouter aux favoris
function add_favoris(txt) {
	if ( window.sidebar ) {
		window.sidebar.addPanel(document.title, document.URL, "");
	} else if ( window.external ) {
		window.external.AddFavorite(document.URL, document.title);
	} else {
		alert(txt);
	}
}

// déplacement et redimension de la page
window.moveTo(0, 0);
var w = screen.availWidth;
var h = screen.availHeight;
window.resizeTo(w, h);

