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