<script type="text/javascript"  language="javascript"> 

/*
Letöltve a ThomasWebMűhely javascript archívumából:
http://www.thomas98.hu/webmuhely.php
*/

/*** MAGYAR FORMÁTUM ***/

Stamp = new Date();
document.write('<font size="2" face="Arial" color="blue"><B>' + Stamp.getYear() + "." + (Stamp.getMonth() + 1) + "." + Stamp.getDate()+ '</B></font><BR>');
var Hours;
var Mins;

Hours = Stamp.getHours();

Mins = Stamp.getMinutes();
if (Mins < 10) {
Mins = "0" + Mins;
}	
document.write('<font size="2" face="Arial" color="red"><B>' + Hours + ":" + Mins + '</B></font>');

</script>
