function displayBannersByDateTime(elementIdToDisplay)
{
	var startDate=new Date();
	var endDate = new Date();
	var currentDate = new Date();

	startDate.setMonth(10); //between 0 and 11 !!!!
	startDate.setDate(1); //between 1 and 31
	startDate.setFullYear(2008); //Four digit year

	endDate.setMonth(10); //between 0 and 11 !!!!
	endDate.setDate(24); //between 1 and 31
	endDate.setFullYear(2008); //Four digit year

	//alert (currentDate);
	if (currentDate < endDate && currentDate >= startDate)
	{
		//alert (currentDate);
		document.getElementById(elementIdToDisplay).style.display = "block";
	}


}
