<!--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();	switch (Today.getDate())	{			};	var strDate = " " + Today.getDate() + " " + GetMonth(Today.getMonth()) + " " + 2012;	return strDate}//-->
