   var now = new Date();
	 var date = now.getDate();
	 var yr = now.getFullYear();
	 var month = now.getMonth();
	 var day = now.getDay();
	 var hrs = now.getHours();
	 var min = now.getMinutes();
	 var sec = now.getSeconds();
	 var dayname = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
	 var monthname = new Array ("January","February","March","April","May","June","July","August","September","October","November","December" );

document.write("<P ALIGN='CENTER'><FONT FACE='Arial, Helvetica, sans-serif' SIZE='4' COLOR='#ff2121'>");

	document.write((hrs) + ":" );
  if (min< 10) document.write("0" + min + ".");
         else document.write(min + ". ");
// if (sec< 10) document.write("0" + sec + " ");
    //     else document.write(sec + " "+ " &nbsp;");	 
				 
 document.write(dayname[day] + " ");

	document.write(monthname[month] + " ");
		
  if (date< 10) document.write("0" + date + " ");
         else document.write(date + " ");
 document.write( (yr) + "")

	 document.write("</FONT>");
	 
