		<!--
		var plugin = 0;
		var activeX = 0;
		var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
		if ( plugin ) {
			plugin = parseInt(plugin.description.substring(plugin.description.indexOf(".")-1)) >= 5;
		}
		else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 && (navigator.userAgent.indexOf("Windows 95")>=0 || navigator.userAgent.indexOf("Windows 98")>=0 || navigator.userAgent.indexOf("Windows NT")>=0)) {
			document.write('<SC'+'RIPT LANGUAGE=VBScript\> \n');
			document.write('on error resume next \n');
			document.write('activeX = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.5")))\n');
			document.write('<' + '/SC'+'RIPT>');
		}
		
		function writeFlashNs(file,w,h){
		document.write('<EMBED src="'+file+'" menu=false quality=autohigh width='+w+' height='+h+' SWLIVECONNECT="FALSE" QUALITY="HIGH"></EMBED>');
		}
		
		function writeFlashIe(file,w,h){
			document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
			document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" ');
			document.write(' ID=menu width='+w+' height='+h+'>');
			document.write('<PARAM NAME=movie VALUE="'+file+'"><PARAM NAME=quality VALUE=high></OBJECT>');
			}
		function writeHtml(file,w,h){
			document.write('<img src="' + file + '" width="' + w + '" height="' + h + '" border="0" usemap="link">');
		}
		//-->