			var MM_contentVersion = 8;
			var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
			if ( plugin ) {
				var words = navigator.plugins["Shockwave Flash"].description.split(" ");
				for (var i = 0; i < words.length; ++i) {
					if (isNaN(parseInt(words[i])))
						continue;
						var MM_PluginVersion = words[i];
				    	}
					var MM_FlashCanPlay = MM_PluginVersion >= MM_contentVersion;
			} else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0
			   && (navigator.appVersion.indexOf("Win") != -1)) {
				document.write('<scr' + 'ipt language=VBScript\> \n');
				document.write('on error resume next \n');
				document.write('MM_FlashCanPlay = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & MM_contentVersion)))\n');
				document.write('</scr' + 'ipt\> \n');
			}
			if ( MM_FlashCanPlay ) {
				document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
				document.write('  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ');
				document.write(' id="officeintroa" width="437" height="145">');
				document.write(' <param name="movie" value="flash/intro.swf"> <param name="loop" value="false" /> <param name="menu" value="false" /> <param name="quality" value="high" /> <param name="wmode" value="transparent" />  ');
				document.write(' <embed src="flash/intro.swf" loop="false" menu="false" quality="high" wmode="transparent"  ');
				document.write(' swLiveConnect="false" width="437" height="145" name="officeintroa"');
				document.write(' type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">');
				document.write(' </embed>');
				document.write(' </object>');
			} else{
				document.write('<img src="images/room.jpg" width="437" height="145" alt="" />');
			}


			// NESTING
			var isNS111 = navigator.appName.indexOf("Netscape")  != -1
			var isIE111 = navigator.appName.indexOf("Microsoft") != -1

			function toggle111(nid){
				if (isIE111) {
					if (document.all[nid].style.display=="none") show111(nid);
					else hide111(nid);
				} else {
					if (document.getElementById(nid).style.visibility=="visible") hide111(nid);
					else show111(nid);
				}
			}

			function show111(nid) {
				if (isIE111) {
					var imgsrc = "img_"+nid;
					document.all[nid].style.display = "block";
					document.all[nid].style.visibility = 'visible';
				} else {
					if (document.getElementById) {
						document.getElementById(nid).style.visibility = 'visible';
						document.getElementById(nid).style.display = 'block';
					}
					if (document.layers) {
						//document.layers[nid].visibility = 'visible';
						alert("This system only supports MSIE 5+, Netscape 5+ and Mozilla 1+");
					}
				}
			}
		
			function hide111(nid){
				if (isIE111)  {
					var imgsrc = "img_"+nid;
					document.all[nid].style.display = "none";
					document.all[nid].style.visibility = 'hidden';
				} else {
					if (document.getElementById) {
						document.getElementById(nid).style.visibility = 'hidden';
						document.getElementById(nid).style.display = 'none';
					}
					if (document.layers) {
						//document.layers[nid].visibility = 'visible';
						alert("This system only supports MSIE 5+, Netscape 5+ and Mozilla 1+. Please make sure your system is up to date. You can continue using this system, but you will have to enter your sport information after you login.");
					}
				}
			}