<!-- 
var today = new Date();
var the_day = today.getDate();
var the_month = today.getMonth() + 1;
var the_year = today.getYear();

var the_hour = today.getHours();
var the_minutes = fixNumber(today.getMinutes());
var the_seconds = fixNumber(today.getSeconds());
var am_pm;

if(the_hour > 11){
	am_pm = " pm"}
else
{
	am_pm = " am"
}


if(the_hour > 12){
	the_hour -= 12
}

the_hour = parseInt(the_hour);

switch(the_month){
case 1:
	the_month="January";
	break;
case 2:
	the_month="Febuary";
	break;
case 3:
	the_month="March";
	break;
case 4:
	the_month="April";
	break;
case 5:
	the_month="May";
	break;
case 6:
	the_month="June";
	break;
case 7:
	the_month="July";
	break;
case 8:
	the_month="August";
	break;
case 9:
	the_month="September";
	break;
case 10:
	the_month="October";
	break;
case 11:
	the_month="November";
	break;
case 12:
	the_month="December";
	break;
}
function fixNumber(number){
	if(number < 10){
		number = "0" + number
	}
	return number;
}
// Output
document.write("<font size = 2>");
document.write(the_month + " " + the_day + ", " + the_year + " - ");
document.writeln(the_hour + ":" + the_minutes + am_pm);
document.write("</font>");

// show me -->
