
function FlashOption (curLocation,NoFlash)
{
	var cText = ''
	if (myLanLink != "")
	{ 	cText += myLanLink
		cText += ' | '
	}
	cText +='<a href="/html/home/contact_us.asp?NoFlash=N">Contact US</a>'
	cText += ' | '

	if (NoFlash != "Y")
	{ cText += '<a href="/default.asp?NoFlash=Y">NO FLASH</a>'
	}
	else
	{ cText += '<a href="/default.asp?NoFlash=N">FLASH</a>'
	}

	if (curLocation != "Home" && myLanLink != "")
	{ 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="/default.asp?NoFlash=N">HOME</a>'
	}
	document.write(cText) 
}