<!--
		var UseFlash = 0;
		if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] ) {
			// Check for Flash version 5 or greater in Netscape
			var plugin = navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin;
			if (plugin && parseInt(plugin.description.substring(plugin.description.indexOf(".")-1))>=6)
			
				UseFlash = 1;
		} else if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && 
			  navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
			// Assume any Windows IE except for Windows 3.1 supports the OBJECT tag
			UseFlash = 1;
		}
		// Allow the cookie to override
		if (document.cookie && (document.cookie.indexOf("FlashRenderOption=P") >= 0)) {
			UseFlash = 1;
		} else if (document.cookie && (document.cookie.indexOf("FlashRenderOption=I") >= 0)) {
			UseFlash = 0;
		}
		if ( UseFlash ) {
			// Use Flash player			
			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" ID=banner WIDTH=277 HEIGHT=193 ALIGN="">');
 			document.write('<param NAME=movie VALUE="images/animation.swf"> <param NAME=loop VALUE=true> <param NAME=quality VALUE=high> <param NAME=wmode VALUE=transparent> <param NAME=bgcolor VALUE=#63696B> <embed src="images/animation.swf" loop=true quality=high wmode=transparent bgcolor=#63696B WIDTH=277 HEIGHT=193 NAME="animation" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></embed>');
			document.write('</object>');
		} else if (!(navigator.appName && navigator.appName.indexOf("Netscape")>=0 && navigator.appVersion.indexOf("2.")>=0)) {
			// Netscape 2 will display the IMG tag below so don't write an extra one
			document.write('<img src="images/animation.gif" WIDTH=277 HEIGHT=193 usemap="#banner" BORDER=0>');
		}
		//-->