<!-- lastupdate.js - JavaScript "Last Update" - www.locriantica.it -->

var month = new Array(13);
month[1] = "January,";
month[2] = "February,";
month[3] = "March,";
month[4] = "April,";
month[5] = "May,";
month[6] = "June,";
month[7] = "July,";
month[8] = "August,";
month[9] = "September,";
month[10] = "October,";
month[11] = "November,";
month[12] = "December,";
var dateObj = new Date(document.lastModified)
var v_month = month[dateObj.getMonth() + 1]
var v_date = dateObj.getDate()
var v_year = dateObj.getYear()
if (v_year < 2000) 
v_year = v_year + 1900
document.write("Last Update: "+ v_month +" "+ v_date +" "+ v_year)
