function GetMonth(nMonth)
{
	var Months = new Array("Jan.","Feb.","Mar.","April","May","June",
	                       "July","Aug.","Sep.","Oct.","Nov.","Dec.");
	return Months[nMonth] 	  	 
}

function DateString()
{
	var Today = new Date();
	Today.setDate(Today.getDate() + 2);
	var strDate=GetMonth(Today.getMonth())+ " " + Today.getDate(); 
	
  	return strDate
}
