/* 	*************************************
	* 				All Pages 			*
	*************************************	*/
	
	function PrintTodaysIFCDate()
	{
		var Today = new Date();
		var IFCDate = new clsIFCDate(Today);
		var insNode = document.getElementById("Date");
		
		insNode.innerHTML = IFCDate.getDate();
	} // end PrintTodaysDate
	
	
