<html>
<head>
<script type="text/javascript">
<!--
/**
*
* Autor René Marscheider
* E-Mail: webmaster(at)janaserver(dot)de
* http://www.janaserver.de/
* Bitte entfernen Sie diesen Vermerk nicht!
*
**/
function bild_auf_zeit()
{
var akz = new Date();
var mon = akz.getMonth() + 1;
var std = akz.getHours();
var bild = (((std >= 8) && (std <= 19)) ? ((mon == 12) ? './bild_3.gif' : './bild_1.gif') : './bild_2.gif');
with (document)
getElementById('wechselbild').src = bild;
}
//-->
</script>
</head>
<body onload="bild_auf_zeit();">
<img id="wechselbild" src="./leer.gif" border="0" width="200" height="50" alt="">
</body>
</html> |