function charger(nom_page) 
	{
	window.location.href=nom_page;
	}
	
AttenteSecondes = 15;
MonHorloge  = new Date ();
HeureDepart = MonHorloge.getTime ();

function AfficheInfo (Sortie) 
	{
    document.f.display.value = Sortie;
  	}
	
function AfficheCompteur () 
	{
	MonHorloge  = new Date ();
	HeureAct = MonHorloge.getTime ();
	diff = HeureAct - HeureDepart;
	diff = (AttenteSecondes * 1000) - diff;
	diff = Math.round (diff / 100) / 10;
	if (diff == Math.round (diff))
		diff += ".0";
	if ((diff < 1) && (diff > 0))
		diff = "0" + diff;
		AfficheInfo (diff + " secondes");
		setTimeout ("AfficheCompteur ();", 100);
		if (diff == "0.0")
	charger('../51_administration/admin.php');
	}