function ShowGreeting()
{
	helixtime = new Date();
	hrstime = helixtime.getHours();

	if (hrstime < 7)
		document.write('Early&nbsp;Welcome...');
	if (hrstime > 6 && hrstime <12)
		document.write('Good&nbsp;Morning&nbsp;and&nbsp;Welcome...');
	if (hrstime > 11 && hrstime <18)
		document.write('Good&nbsp;Afternoon&nbsp;and&nbsp;Welcome...');
	if (hrstime >17)
		document.write('Good&nbsp;Evening&nbsp;and&nbsp;Welcome...');
}
function jump()
{
var page;
page = document.quick.page.value+".html";
parent.location =  page;
}	
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 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 = dayofWeek +"&nbsp;"+ day +"&nbsp;"+ month +"&nbsp;"+ hours +"."+ minutes +"."+ seconds +"&nbsp;"+ dn;

		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 validate()
{
	var ans = true;

	if (!document.form1.Name.value)
	{
		alert ("Please enter your name");
		ans = false;
	}
	else if (!document.form1.email.value)
	{
		alert ("Please enter your email address");
		ans = false;
	}



	return ans;
}