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