// JavaScript Document
<!--//
var myMonths=new Array("January","February","March","April","May","June","July","August","September","October","November","December");
var myDays= new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday");
today=new Date();
thisHour=today.getUTCHours()
if (thisHour.toString().length == 1) thisHour = "0" + thisHour.toString();
thisMinute=today.getUTCMinutes()
if (thisMinute.toString().length == 1) thisMinute = "0" + thisMinute.toString();
thisSecond=today.getUTCSeconds()
if (thisSecond.toString().length == 1) thisSecond = "0" + thisSecond.toString();
thisDay=myDays[today.getUTCDay()]
thisMonth=myMonths[today.getUTCMonth()]
thisYear=today.getUTCFullYear()
thisDate=today.getUTCDate()
todaysDate=thisHour+":"+thisMinute+":"+thisSecond+" GMT, "+thisDay+" "+thisDate+" "+thisMonth+" "+thisYear
//-->





//13:30:03 GMT, Saturday 15th April 2006
//.toGMTString()
 
//.getUTCFullYear()
//.getUTCMonth()
//.getUTCDate()
//.getUTCDay() // (sunday == 0)
//.getUTCHours()
//.getUTCMinutes()
//.getUTCSeconds()
