helixtime = new Date()
	hrstime = helixtime.getHours()
	var isMac = (navigator.userAgent.indexOf('Mac') != -1);
	var isUnix = (navigator.userAgent.indexOf('X11') != -1);
	var isPC = ((!isMac) && (!isUnix));
	var isUnix = (navigator.userAgent.indexOf('X11') != -1);
	var isNav2 = ((navigator.userAgent.indexOf('compatible') == -1) &&
				(navigator.appVersion.charAt(0) == "2"));
	var isIE = (navigator.userAgent.indexOf('IE') != -1);
	var isNetscape = (navigator.userAgent.indexOf('compatible') == -1);
	//var isNetscape = navigator.appName == "Netscape";
	var isNet6 = ((navigator.userAgent.indexOf('Gecko') != -1) && 
	             (navigator.userAgent.indexOf('Netscape6') != -1));
	if(isIE) {			 
		var shwClk = true;
	} else {
		var shwClk = false;
	}
 if (isMac && isIE) {
	} else {
	function DigitalTime() {
		if (!document.layers && !document.all) return;
		if (!shwClk) return;

		var DigitalClock = new Date();
		var hours = DigitalClock.getHours();
		var minutes = DigitalClock.getMinutes();
		var seconds = DigitalClock.getSeconds();
		var year = DigitalClock.getYear();

		var day = DigitalClock.getDate();
		var days=new Array("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
		var months=new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
		var dayofWeek = days[DigitalClock.getDay()];
		var month = months[DigitalClock.getMonth()];
		var dn = "AM";

		if (hours >= 12) {
			dn = "PM";
			hours = hours - 12;
		}

		if (hours == 0) hours = 12;
		if (minutes <= 9)	minutes = "0" + minutes;
		if (seconds <= 9)	seconds = "0" + seconds;

		// Change font size here to your desire.
		digclock = "<span class='Clock'>" + day +" "+ month +" "+ year + "</span>";

		setTimeout("DigitalTime()", 1000)

		if (document.layers) {
			document.layers.liveclock.document.write(digclock);
			document.layers.liveclock.document.close();
		} else if (document.all && !(navigator.appVersion.indexOf("Mac") != -1)) liveclock.innerHTML = digclock;
	}
}
function WriteHello()
{
if (hrstime < 7)
{
	$ans = "Good Morning";
}
else if (hrstime > 6 && hrstime <12)
{
	$ans = 'Good Morning';
}
else if (hrstime > 11 && hrstime <18)
{
	$ans = 'Good Afternoon';
}
else if (hrstime >17)
{
	$ans = 'Good Evening';
}
return $ans;
}
function OpenWind(page)
{
window.open(page,"props", "height=450,width=800,toolbar=no,menubar=no,scrollbars=yes,top=20,left=20,resizable=yes");
return true;
}