
<!-- Paste this code into an external JavaScript file named: modDate.js  -->

/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Thomas Jobe :: http://wotw.9k.com/index.html/ */

function modDate() {
var defaultDate = "09/01/2009>";
var lm = document.lastModified

if (Date.parse(lm) == 0) {
lm = defaultDate
}
document.write("<b>Poslednlja izmena obavljena: </b>" + lm)
}






