<!--
	var baseVersion 	= 6;
	var flashVersion	= 0;
	var is_flash3 		= false;
	var is_flash4 		= false;
	var is_flash5 		= false;
	var is_flash6 		= false;
	var is_flash7 		= false;
	var is_flash8 		= false;
	var is_flash		= false;
	var is_flashplugin	= false;
	var is_ActiveX 		= false;	
	
	var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
	
	if ( plugin ) 
	{
		var words = navigator.plugins["Shockwave Flash"].description.split(" ");
	    for( var i = 0; i < words.length; ++i )
	    {
			if( isNaN( parseInt( words[i] ) ) )
				continue;
				
			if( words[i] == 3 )
				is_flash3 = true;
			if( words[i] == 4 )
				is_flash4 = true;
			if( words[i] == 5 )
				is_flash5 = true;
			if( words[i] == 6 )
				is_flash6 = true;
			if( words[i] == 7 )
				is_flash7 = true;
			if( words[i] == 8 )
				is_flash8 = true;
			flashVersion = words[i]; 
	    }	    
	}
	else if( navigator.userAgent && navigator.userAgent.indexOf("MSIE") >= 0 && ( navigator.appVersion.indexOf("Win") != -1 ) )
	{
		document.write('<SCR' + 'IPT LANGUAGE=VBScript\> \n'); //FS hide this from IE4.5 Mac by splitting the tag
		document.write('on error resume next \n');
		document.write('is_flash3 = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.3")))\n');
		document.write('is_flash4 = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.4")))\n');
		document.write('is_flash5 = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.5")))\n');
		document.write('is_flash6 = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.6")))\n');
		document.write('is_flash7 = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.7")))\n');
		document.write('is_flash8 = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.8")))\n');
		document.write('</SCR' + 'IPT\> \n');

		if( is_flash3 ) flashVersion = 4;
		if( is_flash4 ) flashVersion = 4;
		if( is_flash5 ) flashVersion = 5;
		if( is_flash6 ) flashVersion = 6;
		if( is_flash7 ) flashVersion = 7;
		if( is_flash8 ) flashVersion = 8;
	}
	
    if( flashVersion != 0 )
    {	
	    if( flashVersion >= baseVersion )
	    {
	    	is_flash = true;
	    	is_flashplugin = true;
	    }
	    else
	    {
	    	is_flashplugin = true;
	    }
    }
    
    
    var is_IE  = navigator.userAgent.indexOf("MSIE");
    var is_Win = navigator.userAgent.indexOf("Win");
    var is_AOL = navigator.userAgent.indexOf("AOL");
    var is_Mac = navigator.userAgent.indexOf("Mac");
    
    if( is_IE != -1 && is_Win != -1 )
    {
    	is_ActiveX = true;
    }	

	function printFlash( src, width, height )
	{
		document.write( '<object id="homepageswf" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + width + '" height="' + height + '">');
		document.write( '	<param name="movie" value="' + src + '">');
		document.write( '	<param name="quality" value="high">');
		document.write( '	<param name="scale" value="noscale">');
		document.write( '	<param name="allowFullScreen" value="true" />');
		document.write( '	<embed type="application/x-shockwave-flash" pluginspace="https://www.macromedia.com/go/getflashplayer" src="' + src + '" quality="high" scale="noscale" width="' + width + '" height="' + height + '" />');
		document.write( '</object>');
	}	
//-->