window.onload = prep;

function prep()
{
	replaceFlash(document.getElementById("headerFlashContainer"), "/flash/playerProductInstall.swf", 9, 0, 42);
	
	if (DetectFlashVer(6, 0, 65))
	{
		document.getElementById("header").style.backgroundImage = "none";
	}
	
	if (window.moreOnLoad)
	{
		moreOnLoad(); // example: homepage
	}
}

function changeLanguage(language)
{	
	var newLocation = "";
	var URL = document.location;

	switch(language)
	{
		case 'english':	newLocation = URL.replace("es/", "");
						break;
		case 'spanish':	newLocation = URL.replace("", "");
						break;					
	}

	window.location = newLocation;
	
	return false;
}