// output an appropriate message for IE6

var ie6_onlyMessage = "You appear to be viewing this page with Internet Explorer version 6 or earlier. This website&rsquo;s video playback feature is not supported for that browser version. If you don&rsquo;t wish to (or are unable to) upgrade to a more recent version of Internet Explorer, you might try <a class=\"ext\" href=\"http://www.mozilla.com/firefox/\">Firefox</a> as an alternative web browser.";

var not_ie6_message = "Your web browser has Javascript enabled. If you are unable to view the videos on this website it might be because the Flash Player is not installed or is disabled in your browser. If you know that the Flash Player is enabled and are still having problems, please <a href=\"/contact/24/jeff-soo\">contact us</a>.";

function selectMessage() {
	var x = document.getElementById("no-javascript-message");
	if (typeof ie6_only == "undefined") {
		x.innerHTML = not_ie6_message;
	} else {
		x.innerHTML = ie6_onlyMessage;
	}
}

registerOnLoad(selectMessage);

if (typeof ie6_only != "undefined") {
	selectMessage();
}
