wcf.regNote.message


mit body und dem div.
):|
|
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 28 29 30 31 32 33 34 |
<script type="text/javascript" language="JavaScript" >
function tick()
{
var hours, minutes, seconds, day, month, today, year;
var Clock = document.getElementById("clock");
today = new Date();
hour=today.getHours();
minutes=today.getMinutes();
seconds=today.getSeconds();
year=(today.getYear() - 100);
day=today.getDate();
month=today.getMonth()+1;
if (seconds < 10)
{
seconds="0"+seconds;
}
if (minutes < 10)
{
minutes="0"+minutes;
}
if (month < 10)
{
month="0"+month;
}
if (year < 10)
{
year="0"+year;
}
timeString=day + "." + month + "."+year+" "+ hour+":"+minutes+":"+seconds;
Clock.innerHTML = timeString;
window.setTimeout("tick();", 100);}
</script>
<body onLoad="tick();">
<div id="clock"></div>
|

Quoted
<div align="center">
<object classid="clsid:d27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="118" height="125">
<param name="movie" value="super_uhr.swf" />
<param name="quality" value="high" />
<embed src="uhrdeu2.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="118" height="125"></embed></object>
</div>




