<!-- Hide. This exchanger calcultes only onto the JavaScript competable browsers.

  var now = new Date()
  var hrs = now.getHours()
  var min = now.getMinutes()
  var user = -(now.getTimezoneOffset() / 60)

function showTime() {
	if (hrs>12) {
	hrs -= 12
        hrs += ":" + min + " pm" + "."
	}
	else {
	hrs -= 0
	hrs += ":" + min +" am" + "."
	}
	if (user>0) {
	hrs += "(GMT+" + user + ")"
	}
	else {
	hrs += "(GMT" + user + ")"
	}
	return hrs
	}

function Cvalue(form) {
}

function remoteWindow() {
	var jeicoMap=window.open("http://www.jeico.com/howuse.html","Mapuser", 
	"width=400,height=330,scrollbars=no,menubar=no,resizable=no")
}

//Stop Hiding-->

<!--
var day = new Date();
var currentTimeZoneOffsetInHours = - day.getTimezoneOffset()/60;

var ClockId = null;
var ClockRunning = false;

function TOfunc() {
	var timezone = document.forms[0].timezone[document.forms[0].timezone.selectedIndex].value;
	
	var today = new Date();
	var hours = today.getHours();
	var minutes = today.getMinutes();
	var secs = today.getSeconds();
	//hours += currentTimeZoneOffsetInHours;
	hours += parseInt(timezone) - currentTimeZoneOffsetInHours;
	today.setHours(hours);
	ST = today.toString();
	ST = ST.substring(0,19)
	document.forms[0].local.value = ST;
	ClockId = window.setTimeout( "TOfunc()", 1000 );
	ClockRunning = true;
}

function stopClock(){
	if(ClockRunning) clearTimeOut(ClockId); ClockRunning = false;
}

function where(){
//	currentTimeZoneOffsetInHours = index;
	stopClock;
	TOfunc();
}
//-->


