function IsItToday(checkDate,Hsize,Vsize,Vspace) {
	var d = new Date();
	var theMonth = d.getMonth();
	theMonth++;
	var theDate = d.getDate() + "/" + theMonth + "/" + d.getFullYear();
	
	if (theDate == checkDate) {
		if (!Hsize) {
			return ("<img src=../images/spacer.gif border=0 width=26><img src=../images/Today.gif alt=Today border=0>");
		}
		else {
			return ("<img src=../images/spacer.gif border=0 width=" + Vspace + "><img src=../images/Today.gif alt=Today border=0 height=" + Hsize + " width=" + Vsize + ">");
		}
	}
	else {
		return ("");
	}
}

function IsItNextWeek(checkDate) {
	var d = new Date();
	var theMonth = d.getMonth();
	var theDay = d.getDate();
	theMonth++;

	if (theMonth<10) {theMonth="0" + theMonth;}
	if (theDay<10) {theDay="0" + theDay;}
	var theDate = d.getFullYear() + theMonth + theDay;

	if (theDate >= checkDate) {
		return ("<font color=red size=+2>Next Week Sessions not updated yet.<br><font size=+1>They will be updated over the weekend.</font></font>");
	}
	else {
		return ("<font size=-1>Next Week Sessions updated over the weekend</font>");
	}
}
