function FlashOption (curLocation,NoFlash)
{
	var cText = ''
	if (NoFlash != "Y")
	{ cText += '<a href="/shared/template/default.asp?NoFlash=Y" class="normal-text">NO FLASH</a>'
	}
	else
	{ cText += '<a href="/shared/template/default.asp?NoFlash=N" class="normal-text">FLASH</a>'
	}
	if (curLocation != "Home")
	{ cText += ' | '
	}
	document.write(cText) 
}
function BreadCrum (curLocation,NoFlash)
{
	var cText = ''
	FlashOption (curLocation,NoFlash)
	if (	curLocation == "Fall" 
		|| 	curLocation == "Spring"
		|| 	curLocation == "Winter"
		|| 	curLocation == "Summer"
		|| 	curLocation == "NE League"
		|| 	curLocation == "About Us"
		)
	{ 	
		cText += '<a href="/" class="breadcrum"><span style="text-decoration: none">HOME</span></a>'
	}
	document.write(cText) 
}