function ShowStar(Update)
{
var today=new Date();
var hours;
var minutes;
var timeOfDay="am";
                      
if (((today - Update)/1000/60/60/24) < 7)
	{
    document.write("&nbsp<img src=\"images3/smallredstar.JPG\" width=\"14\" height=\"14\" alt=\"\" border=\"0\">");
    }
    
hours=Update.getHours();
minutes=Update.getMinutes();
if (hours>11)
	{
	timeOfDay="pm";
	if (hours>12)
		{
		hours=hours-12;
		}
	}
document.write("<font size=-2>&nbsp&nbsp&nbsp&nbsp&nbsp(" + Update.toDateString() + " " + hours + ":" + minutes + " " + timeOfDay + ")</font></h3>");
}     



function ShowDateStar(ShowDate,Update)
{
var today=new Date();
var hours;
var minutes;
var timeOfDay="am";

document.write(" (" + ShowDate + ") ");

if (((today - Update)/1000/60/60/24) < 7)
	{
    document.write("&nbsp<img src=\"images3/smallredstar.JPG\" width=\"14\" height=\"14\" alt=\"\" border=\"0\">");
    }

hours=Update.getHours();
minutes=Update.getMinutes();
if (hours>11)
	{
	timeOfDay="pm";
	if (hours>12)
		{
		hours=hours-12;
		}
	}
document.write("<font size=-2>&nbsp&nbsp&nbsp&nbsp&nbsp(" + Update.toDateString() + " " + hours + ":" + minutes + timeOfDay + ")</font></h3>");
}