<script language="JavaScript">
<!--
var quotenumber = 14 ;
var randomnumber = Math.random() ;
var rand1 = Math.round( (quotenumber-1) * randomnumber) + 1 ;
quotes = new Array
quotes[1] = "NACHRICHT #1"
quotes[2] = "NACHRICHT #2"
quotes[3] = "NACHRICHT #3"
quotes[4] = "NACHRICHT #4"
quotes[5] = "NACHRICHT #5"
quotes[6] = "NACHRICHT #6"
quotes[7] = "NACHRICHT #7"
quotes[8] = "NACHRICHT #8"
quotes[9] = "NACHRICHT #9"
quotes[10] = "NACHRICHT #10"
quotes[11] = "NACHRICHT #11"
quotes[12] = "NACHRICHT #12"
quotes[13] = "NACHRICHT #13"
quotes[14] = "NACHRICHT #14"
var message = quotes[rand1]
document.write("<b>" + message + "</font>")
// -->
</script> |