	Stamp = new Date();
	var Hours;
	var Mins;
	Hours = Stamp.getHours();
	Mins = Stamp.getMinutes();
      
	if (Mins < 10) {
        	Mins = "0" + Mins;
        }

        var Suffix;
        Suffix = "th"
        if (Stamp.getDate() == 1 || 
            Stamp.getDate() == 21 ||
            Stamp.getDate() == 31)
            {Suffix = "st";}

        if (Stamp.getDate() == 2 || 
            Stamp.getDate() == 22)
            {Suffix = "nd";}

        if (Stamp.getDate() == 3 || 
            Stamp.getDate() == 23)
            {Suffix = "rd";}

        var Month;
        if (Stamp.getMonth() == 0) {Month = "Jan";}
        if (Stamp.getMonth() == 1) {Month = "Feb";}
        if (Stamp.getMonth() == 2) {Month = "Mar";}
        if (Stamp.getMonth() == 3) {Month = "Apr";}
        if (Stamp.getMonth() == 4) {Month = "May";}
        if (Stamp.getMonth() == 5) {Month = "Jun";}
        if (Stamp.getMonth() == 6) {Month = "Jul";}
        if (Stamp.getMonth() == 7) {Month = "Aug";}
        if (Stamp.getMonth() == 8) {Month = "Sep";}
        if (Stamp.getMonth() == 9) {Month = "Oct";}
        if (Stamp.getMonth() == 10) {Month = "Nov";}
        if (Stamp.getMonth() == 11) {Month = "Dec";}

//	quick fix bug where Netscape shows date of '102' not '2002'
	var Yr;
	Yr = Stamp.getYear();
	if (Yr < 2000) Yr = Yr + 1900;
	if (Yr < 2000) Yr = Yr + 100;

//	document.write('<font size="2" face="Arial,Geneva,Sans Serif"><B>' + Stamp.getDate() +"/"+ Month + "/"+Stamp.getYear() + "  " + Hours + ":" + Mins + '</B></font><BR>');
	document.write('<font size="2" face="Arial,Geneva,Sans Serif"><B>' + Stamp.getDate() + Suffix +" "+ Month + " "+Yr + '</B></font><BR>');
