// New Links by Nicolas at http://www.javascript-page.com
// From JavaScript Source!! http://javascript.internet.com and http://javascriptsource.com
//Rename as New Item Duration by Y.Y.Ong

function checknewitemduration(date) {
	var newpic = "../graphics/website/new.gif";
	expiredate = new Date(date);
	currentdate = new Date();
	if (expiredate.getTime() > currentdate.getTime())
		document.write("<img src=" + newpic + ">");
	}




// Time Greeting by Robert Ison at http://www.infosourcetraining.com 
// From JavaScript Source!! http://javascript.internet.com and http://javascriptsource.com

today = new Date();
time=today.getTime();
//today.setTime(time);
hour = today.getHours();
if (hour > 18) display = "Evening";
else if (hour >12) display = "Afternoon";
else display = "Morning";
var greeting = ("Good " + display + "!");






