
window.onload = function() {
	if(!DetectFlashVer(flashVersion, 0, 0)) {
		// on loading the page, add /noflash to all the links
		var ays = document.getElementsByTagName("a");
		for(i = 0; i < ays.length; i++) {
			if(ays[i].className=="noflash")
				ays[i].href += "/noflash";
		}
	} else {
		location.href="/";
};
