wcf.regNote.message
so wie ich|
|
PHP Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
<html>
<head>
<title>random Pics</title>
</head>
<script type="text/javascript"><!--
var pics = new Array();
pics.push("bilder/1.jpg");
pics.push("bilder/2.jpg");
pics.push("bilder/3.jpg");
pics.push("bilder/4.jpg");
pics.push("bilder/5.jpg");
pics.push("bilder/6.jpg");
function OnInit()
{
var index = Math.random()*100;
index = index%(pics.length - 1);
index = Math.round(index);
var img = document.getElementById("rnd");
img.src = pics[index];
}
--></script>
<body onLoad="OnInit()">
<img id="rnd" />
</body>
</html>
|

