start = new Date();
start_seconds = start.getTime();
function load()
{
text_before = 'Page chargée en';
// Entrez ci-dessus le texte précédent le temps de chargement

text_after = '';
// Entrez ci-dessus le texte suivant le temps de chargement

end = new Date();
end_seconds = end.getTime();
final_seconds = (end_seconds-start_seconds)/1000;
	if(final_seconds <= 1)
        {
        document.getElementById("timezone").innerText = text_before+' '+final_seconds+' seconde '+text_after;
        }
        else
        {
        document.getElementById("timezone").innerText = text_before+' '+final_seconds+' secondes '+text_after;
        }
}

// Dans la balise <BODY>:
// onload="load()"
// Entre <BODY> et </BODY>:
// <DIV ID="timezone" STYLE="font-family:arial"></DIV>