<!--	var flashDetected = false;	var flashVersion = 6;	var plugin = false;	var i = 0;		// if the mimeType property is detected, using plugin property to detect the flash plugin.	plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;	if (plugin) {		// split the description into words, when a digit is found it is the version number.		var desc_array = navigator.plugins["Shockwave Flash"].description.split(" ");		for (i; i < desc_array.length; ++i) {			if (!isNaN(parseInt(desc_array[i]))) {				var pluginVersion = desc_array[i];				break;			}		}		flashDetected = (pluginVersion >= flashVersion);	}		// if IE was detected, use VBScript to detect the flash plugin.	else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 && (navigator.appVersion.indexOf("Win") != -1)) {		document.write('<script language=VBScript\>flashDetected = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & flashVersion)))</script\>');	}		// if flash is detected, write the flash object/embed code, else write an image.	if (flashDetected) {		document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="400" height="180"><param name="movie" value="/img/marquee.swf"><param name="menu" value="false"><param name="quality" value="best"><param name="bgcolor" value="#FFFFFF"><embed src="/img/marquee.swf" menu="false" quality="best" bgcolor="#FFFFFF" width="400" height="180" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object>');	} else {		document.write('<img src="/img/marquee.jpg" width="400" height="180" alt="APAHelpCenter.org" />');	}//-->