function clock()
{
if (!document.all&&!document.getElementById)
	return
	el=document.getElementById? document.getElementById("clock"): document.all.clock;
var see=new Date();
var d=see.getDate(); var m=see.getMonth(); var Y=see.getFullYear();
var h=see.getHours(); var i=see.getMinutes(); var s=see.getSeconds();

if (d<=9)
	d="0"+d;
if (m<=9)
	m++;
	m="0"+m;
if (h>24)
	h=h-24;
if (h==0)
	h=00;
if (i<=9)
	i="0"+i;
if (s<=9)
	s="0"+s;
	var time=d+"."+m+"."+Y+"&nbsp;&nbsp;"+h+":"+i+":"+s;
	el.innerHTML="<span style='font-size:12px; color:#B7C4D4; font-weight:bold; font-family:Arial,Helvetica,sans-serif;'>"+time+"&nbsp;</span>";
	setTimeout("clock()",1000);
}
window.onload=clock;



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();
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


