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() {
	
		

		var DigitalClock = new Date();
		var hours = DigitalClock.getHours();
		var minutes = DigitalClock.getMinutes();
		var seconds = DigitalClock.getSeconds();
		var day = DigitalClock.getDate();
		var days=new Array("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
		var months=new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
		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'>" + dayofWeek +" "+ day +" "+ month +" "+ hours +"."+ minutes +"."+ seconds +" "+ dn  + "</span>";

		setTimeout("DigitalTime()", 1000)

		if (document.layers) {
			document.layers.liveclock.document.write(digclock);
			document.layers.liveclock.document.close();
		} else 
			  document.getElementById("liveclock").innerHTML = digclock ;
			
	}
//}
function WriteHello()
{
if (hrstime < 7)
{
	$ans = "Early Welcome to Aspen...";
}
else if (hrstime > 6 && hrstime <12)
{
	$ans = 'Good Morning and Welcome to Aspen...';
}
else if (hrstime > 11 && hrstime <18)
{
	$ans = 'Good Afternoon and Welcome to Aspen...';
}
else if (hrstime >17)
{
	$ans = 'Good Evening and Welcome to Aspen...';
}
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;
}
