// 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()


