// JavaScript Document



//window.onLoad=format_time();

function format_time()

 {
	Date.prototype.toString = function () {return [['Sunday,', 'Monday,', 'Tuesday,', 'Wednesday,', 'Thursday,', 'Friday,', 'Saturday,'] [this.getDay()], this.getDate(), ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'] [this.getMonth()], this.getFullYear()].join(' ')}	
	var currentDate=new Date();
	document.getElementById("dispdate").innerHTML="<div><a style='color:#000' href='http://makarandparanjape.wordpress.com'>For more go to Blog</a>&nbsp;&nbsp;" + currentDate +"</div>";
	
 }




