// JavaScript Document<!--function MM_openBrWindow(theURL,winName,features) { //v2.0  window.open(theURL,winName,features);}function GetDay(nDay){	var Days = new Array("sun.","mon.","tues.","wed.",	                     "thur.","fri.","sat.");	return Days[nDay]}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();	var suffix = "th";	switch (Today.getDate())	{		case 1:		case 21:		case 31: 			suffix = "st"; break;		case 2:		case 22:			suffix = "nd"; break;		case 3:		case 23:			suffix = "rd"; break;	};	var strDate = GetDay(Today.getDay()) + " " + Today.getDate();	strDate += suffix + " " + GetMonth(Today.getMonth());	return strDate}//-->
