<!-- Begin Road Conditions

// USE ALL LOWERCASE 

var WhiteAlert    	= "no"				// DISPLAY LEVEL 4 ALERT "yes" for on "no" for off
var YellowAlert		= "no"				// DISPLAY LEVEL 3 ALERT "yes" for on "no" for off
var OrangeAlert		= "no"				// DISPLAY LEVEL 2 ALERT "yes" for on "no" for off
var RedAlert		= "no"				// DISPLAY LEVEL 1 ALERT "yes" for on "no" for off
var ClosedToday		= "no"				// DISPLAY COURTHOUSE CLOSED "yes" for on "no" for off



// *****************************************************************
// DO NOT EDIT BELOW THIS LINE
// *****************************************************************

document.write('<p align = "center">');


// BEGIN LEVEL 4 CODE
   if (WhiteAlert == "yes") {

document.write('<img src="http://www.miamicountyin.gov/picts/MCH/WeatherAlerts/RoadConditionsWhite.jpg" align="left" width="814" height="160" border="0"><br>');

}


// BEGIN LEVEL 3 CODE
   if (YellowAlert == "yes") {

document.write('<img src="http://www.miamicountyin.gov/picts/MCH/WeatherAlerts/RoadConditionsYellow.jpg" align="left" width="864" height="170" border="0">');

}


// BEGIN LEVEL 2 CODE
   if (OrangeAlert == "yes") {

document.write('<img src="http://www.miamicountyin.gov/picts/MCH/WeatherAlerts/RoadConditionsOrange.jpg" align="left" width="915" height="180" border="0">');

}


// BEGIN LEVEL 1 CODE
   if (RedAlert == "yes") {

document.write('<img src="http://www.miamicountyin.gov/picts/MCH/WeatherAlerts/RoadConditionsRed.jpg" align="left" width="1017" height="200" border="0">');

}


// BEGIN COURTHOUSE CLOSED CODE
	if (ClosedToday == "yes") {

document.write('<tr><img src="http://www.miamicountyin.gov/picts/spacer.gif" HEIGHT="1" WIDTH="700">');
document.write('<br><td align = "center"><span class = "price">All Courthouse and Annex Building offices are closed today.  We apologize for any inconvenience.</span></td></tr>');

}


document.write('</p>');

//  End -->
