/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Sandeep Gangadharan :: http://www.sivamdesign.com/scripts/ */

function formatTime() {

  d = new Date();
  d.setUTCDate(15);

  document.clock.sivam.value = d;

  setTimeout("formatTime()", 1000);
}

window.onload=formatTime;

