// print
function printWindow(){
   bV = parseInt(navigator.appVersion)
   if (bV >= 4) window.print()
}
// reload
function hardReload() {
 location.reload()
}
// update
Update = new Date(document.lastModified)
theMonth = Update.getMonth() + 1
theHour = Update.getHours()
theMinute = Update.getMinutes()
theDate = Update.getDate()
theYear = Update.getYear()
if (theYear<= '1900') 
{
theYear = theYear+1900;
}
if (theMinute<= '9') 
{
theMinute = '0'+theMinute;
}



