<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=600,height=400,left = 340,top = 312');");
}
// End -->

<!--
	// CODE FOR POPUPS
	function pop_Link(LID) {
		popupWin = window.open("pop_link.asp?lid=" + LID,'new_page','width=400,height=275,scrollbars=yes,toolbars=no,menubar=no,resizable=no');
	}
	// END POPUP CODE

	// CODE FOR THE DIGITAL CLOCK
	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("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
			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 = "<small>" + dayofWeek +" "+ day +" "+ month +"&nbsp; &#126; &nbsp;"+ hours +":"+ minutes +"."+ seconds +" "+ dn  + "</small>";

			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;

			setTimeout("DigitalTime()", 1000)
		}
	}
	// END CLOCK CODE
	//-->
