
<!-- creates current date *thisdate* in YYYYMMDD format -->

var today= new Date();
var thismonth= (today.getMonth()+1);
var thisday= (today.getDate());
	if (thismonth <10)
	{
		thismonth=("0"+thismonth)
	}
	if (thisday <10)
	{
		thisday=("0"+thisday)
	}
var thisdate=((today.getFullYear())+""+thismonth+""+thisday);
thisdate=parseInt(thisdate);

<!-- tests specific date against current date *thisdate* to execute condition -->
<!-- ****** CHANGE NUMBER BELOW -less than value- TO REFLECT DESIRED CUTOFF DATE  ****** -->

	if (thisdate < 20060215)
	{
		document.writeln("<table style='background-color: #DFFFBE;border: 4px groove #000099; margin: 1em; padding:2em;'><tr><td><p class='small_font'><span class='important'>The District 48 Runoff Election is scheduled for Tuesday, February 14, 2006.</span><br /><a href='/county_clerk/election/20060214/early_voting_guide.pdf'>Early Voting Locations</a> (Monday, February 6 -- Friday, February 10, 2006)<br /><a href='/county_clerk/election/20060214/polls.pdf'>Election Day Polls</a></p></td></tr></table>");
	}