			var hasFlashPlugin = false;
			if (navigator.plugins["Shockwave Flash"])
			{
				hasFlashPlugin = true;
			}
			else
			{
				for(var i=10; i>0; i--){
					flashVersion = 0;
					try
					{
						var flash = new ActiveXObject("ShockwaveFlash.ShockwaveFlash." + i);
						flashVersion = i;
						hasFlashPlugin = true;
					}
					catch(e)
					{
					}
				}
			}
			if (!hasFlashPlugin)
			{
				var flashDiv = document.getElementById("flashHeader");
				if (flashDiv != null)
				    flashDiv.style.display = "none";
			}
			else
			{
				var nonflashDiv = document.getElementById("nonFlashHeader");
				if (nonflashDiv != null)
				    nonflashDiv.style.display = "none";
			}

