			//*********************************
			var myWidth = "492";
			var myHeight = "300";
			var myFlashFile = "images/system/flash/intro_se.swf";
			var myFlashVersion = "4";
			var myBackupImage = "images/system/flash/intro.jpg";
			//*********************************
		
			var strFlash = "";
			var strBackup = "";
			var FlashInstalled = false;
			
			var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0);
			
			if (plugin && parseInt(plugin.description.substring(plugin.description.indexOf(".")-1)) >= myFlashVersion) {
				FlashInstalled = true;
			} else if ((navigator.userAgent.indexOf("Win") != -1) && (document.all)) {
				document.write('<scr'+'ipt language="vbscript"\>\n');
				document.write('on error resume next\n');
				document.write('FlashInstalled = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.'+myFlashVersion+'")))\n');
				document.write('</scr'+'ipt\>\n');
			}
			
			// flash code
			strFlash += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"';
			strFlash += ' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+myFlashVersion+',0,0,0"';
			strFlash += ' width="'+myWidth+'" height="'+myHeight+'" ID="myFlash" NAME="myFlash">\n';
			strFlash += '<param name="movie" value="'+myFlashFile+'">\n';
			strFlash += '<param name="quality" value="best">\n';
			strFlash += '<param name="menu" value="false">\n';
			strFlash += '<embed src="'+myFlashFile+'" menu="false" quality="best" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" swLiveConnect="true"';
			strFlash += ' width="'+myWidth+'" height="'+myHeight+'" ID="myFlash" NAME="myFlash"></embed></object>';
			
			// backup code
			strBackup += '<img src="'+myBackupImage+'" width="'+myWidth+'" height="'+myHeight+'" alt="" border="0">';
			
			if (FlashInstalled) {
				document.write(strFlash);
			} else {
				document.write(strBackup);
			}
