function GetMonth(nMonth) {
	var Months = new Array("Jan","Feb","Mar","Apr","May","Jun",
	                       "Jul","Aug","Sep","Oct","Nov","Dec");
	return Months[nMonth] 	  	 
}

function DateString() {
	var Today = new Date();
	Today.setDate(Today.getDate() - 1);
	var strDate= GetMonth(Today.getMonth())+" " + Today.getDate() +", " + (Today.getYear() + 1900); 
  	return strDate
}

