function expiringNew(expirationDate)
{
expirationDate = new Date(expirationDate);
currentDate = new Date();

	if (expirationDate.getTime() > currentDate.getTime())
	{
		document.write("<FONT SIZE=\"1\" COLOR=\"#FF0000\">New!</FONT>")
	}
}

function expiringUpdated(expirationDate)
{
expirationDate = new Date(expirationDate);
currentDate = new Date();

	if (expirationDate.getTime() > currentDate.getTime())
	{
		document.write("<FONT SIZE=\"1\" COLOR=\"#FF0000\">Updated!</FONT>")
	}
}


function popWindow(href,title,parameters)
{
	window.open(href,title,parameters);
}