

//--  START CURRENT TIME AND UTC TIME CLOCK  

function jsClock(){
	var time = new Date()
	var hour = time.getHours()
	var minute = time.getMinutes()
	var second = time.getSeconds()
	var temp = "" + ((hour > 12) ? hour - 12 : hour)
	if(hour==0) temp = "12"
	if(temp.length==1) temp = " " + temp
	temp += ((minute < 10) ? ":0" : ":") + minute
	temp += ((second < 10) ? ":0" : ":") + second
	temp += (hour >= 12) ? " PM" : " AM"
	document.clockForm.digits.value = temp
	id = setTimeout("jsClock()",1000)
	}

function jsClockGMT(){
	// Copyright 1999 - 2001 by Ray Stott
	// OK to use if this copyright is included
	// Script available at http://www.crays.com/jsc
	var time = new Date()
	var gmtMS = time.getTime() + (time.getTimezoneOffset() * 60000)
	var gmtTime =  new Date(gmtMS)
	var hour = gmtTime.getHours()
	var minute = gmtTime.getMinutes()
	var second = gmtTime.getSeconds()
	var temp = "" + ((hour < 10) ? "0" : "") + hour
	temp += ((minute < 10) ? ":0" : ":") + minute
	temp += ((second < 10) ? ":0" : ":") + second
	document.clockFormGMT.digits.value = temp
	setTimeout("jsClockGMT()",1000)
	} 
 
<!--
function eumetsat()
{
window.open("http://www.eumetsat.int/Home/index.htm", "NewWindow");
}
function MTSAT()
{
window.open("http://www.jma.go.jp/jma/jma-eng/satellite/", "NewWindow");
}
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();
}
MM_reloadPage(true);
//-->

