<html>
<head>
<title>Java Script ze stránky - www.jaknaweb.com</title><BODY onload=Randomy()>
<SCRIPT language=JavaScript>
//zacatek
function Randomy() {
//retezce textu
quotes = new Array(6);
authors = new Array(6);
quotes[0] = "Navštivte stránky ";
authors[0] = " http://www.jaknaweb.com/";
quotes[1] = "Vse pro www";
authors[1] = "PHP";
quotes[2] = "ASP";
authors[2] = "HTML";
quotes[3] = "Tadyje neco";
authors[3] = "je";
quotes[4] = " Proc jste zde?";
authors[4] = "jen tak.";
quotes[5] = "napiste mi";
authors[5] = "admin@www.jaknaweb.com !!!";
//zjisteni nahodneho cisla
index = Math.floor(Math.random() * quotes.length);
//zobrazeni citace do radku
window.status=""+quotes[index]+" - "+ authors[index] +"."
}
//konec
</SCRIPT>
</body>
</html>