<!--
		if (MM_FlashCanPlay) {
			//handled is mainflash
			window.document.getElementById("flash-content").style.display = "";
			window.document.getElementById("html-content").style.display = "none";

			document.write(' <style> body{overflow:hidden;} </style> ')

			if(!document.getElementById){
				document.write(' <style> #html-content{display: none;} #flash-content{display:;}</style> ')
			}
		}else{
			window.document.getElementById("flash-content").style.display = "none";
			window.document.getElementById("primary-content").style.display = "";
			if(!document.getElementById){
				document.write(' <style> #html-content{display:;} #flash-content{display: none;} </style> ')
			}
		}
//-->