RE: Skript na datum aktualizacie

From: Galda Jan (Jan.Galda@roz.br.ds.mfcr.cz)
Date: 10. 09. 2003, 13:00 CEST


<script language="javascript">
<!--
datum = new Date (document.lastModified);
document.write (datum.getYear());
//-->
</script>

<!-- 1.verze -->
<script language="JavaScript">
<!--
lastmod = document.lastModified
lastmoddate = Date.parse(lastmod)
if (lastmoddate == 0) {
document.writeln("Datum aktualizace neznámé!") } else {
document.writeln("Poslední aktualizace této stránky: " + lastmod)}
// -->
</script> 

<!-- 2.verze -->
<BR>
Poslední aktualizace: 
<b>
<script language="javascript">
<!-- 
datum = new Date (document.lastModified); 
mesic = new Array ('ledna', 'února', 'března', 'dubna', 'května', 'června',
'července', 'srpna', 'září', 'října', 'listopadu', 'prosince');
document.write (datum.getDate() + '. ' + mesic[datum.getMonth()] + ' ' +
datum.getYear()); 
//-->
</script>



This archive was generated by hypermail 2.1.3 : 10. 09. 2003, 12:52 CEST