var gameStatus = 'green'

function getGameStatus(varStatus)
{
	switch(varStatus) {
		case "red":
			document.write('		<table><tr>')
			document.write('			<td valign="center"><IMG SRC="images/status-red.gif" WIDTH="15" HEIGHT="15" BORDER="0" ALT="RED"></td>')
			document.write('			<td> MAY 29 GAMES CANCELLED<br><i>(updated May 29 @ 4:35 PM)</i></td>')
			document.write('		</tr></table>')
			break
		case "yellow":
			document.write('		<table><tr>')
			document.write('			<td valign="center"><IMG SRC="images/status-yellow.gif" WIDTH="15" HEIGHT="15" BORDER="0" ALT="YELLOW"></td>')
			document.write('			<td> Games Questionable; re-visit this site at 5pm for confirmation.</td>')
			document.write('		</tr></table>')
			break
		case "green":
			document.write('		<table><tr>')
			document.write('			<td valign="center"><IMG SRC="images/status-green.gif" WIDTH="15" HEIGHT="15" BORDER="0" ALT="GREEN"></td>')
			document.write('			<td> Games ON</td>')
			document.write('		</tr></table>')
			break
	}
	return varStatus
}


