//clock//
function gettime(){
var today_date= new Date()
var myyear=today_date.getYear()
var mymonth=today_date.getMonth()+1
if (mymonth<10)
mymonth="0"+mymonth
var mytoday=today_date.getDate()
if (mytoday<10)
mytoday="0"+mytoday
var date= mytoday+"/"+mymonth+"/"+myyear
if (document.all)
document.all.clock.innerHTML=date
else if (document.getElementById)
document.getElementById("clock").innerHTML=date
else
document.write(date)
}
if (!document.all&&!document.getElementById)
gettime()
function changetime(){
if (document.all||document.getElementById)
setInterval("gettime()",1000)
}
//reload page//
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
