var today=new Date();
var strDate;
var strTemp;

strDate = today.toLocaleString();
strTemp = strDate.substring( strDate.length-3, strDate.length);
// strDate = strDate.substring( 0, strDate.length-6) + strTemp;
// document.write("Today is: " + strDate+ "<BR>");

document.write("<b>Today is: " + strDate.substring( 0, strDate.length-6) + strTemp + "</b><BR>");
