<!--
function write_greetings() {
	now = new Date();

	var CurHour = now.getHours();
	var CurMinute = now.getMinutes();
	var Greetings;

	if (CurHour >= 0 && CurHour < 12) {
		Greetings = "<strong>Good Morning,</strong><br>";
	} else if (CurHour >=12 && CurHour < 18) {
		Greetings = "<strong>Good Afternoon,</strong><br>";
	} else if (CurHour >= 18 && CurHour <= 24) {
		Greetings = "<strong>Good Evening,</strong><br>";
	}

	now = null;
	document.write(Greetings);
}
	
var timerID=setTimeout("",1000);

function linkDesc(linkName) {
	clearTimeout(timerID);
	window.status=linkName;
	timerID=setTimeout("window.status=''",2500);
}

function open_window(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

function close_window() {
    window.close();
}

// -->
