function tick()
{
   var today;
   today = new Date()
   Clock.innerHTML = today.toLocaleString().replace(/(年|月)/g, ".").replace(/日/, "");
   window.setTimeout("tick()", 1000);
}
function Cur_Time()
{	
	cur_time="<FONT  color=ffffff id=Clock align=right></FONT>";	
}
function tick()
{
   var today;
   today = new Date()
   Clock.innerHTML = today.toLocaleString();
   //Clock.innerHTML = today.toLocaleString().replace(/(年|月)/g, ".").replace(/日/, "");
   window.setTimeout("tick()", 1000);
}
function UTCDateDemo()
{
  var d, s = "";
  d = new Date();
  s += d.getUTCFullYear()+ "-";  
  s += (d.getUTCMonth() + 1) + "-";
  s += d.getUTCDate();
  Clock.innerHTML = s;
}
Cur_Time();
document.writeln(cur_time);
UTCDateDemo();
