/*

**********************
Flash Insert Function
**********************

AUTHOR:
GRAHAM BATES

DATE:
March 2006

DESCRIPTION:
replaces content on page with a flash movie if flash is detected

USAGE:
id - id of container element which will have it's content replaced with the flash
movie - URL of swf file
params - object containing any parameters eg. width, height, bgcolor, quality 

EXAMPLE:
Inline script placed under element to be replaced

<script type="text/javascript">
<!--
insertFlash('contanter','movie.swf',{width:'468',height:'60',quality:'high',bgcolor:'FF0000'});
-->
</script>
*/

function insertFlash(id, movie, params){
	if (MM_FlashCanPlay) {
		flashCode = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+params.width+'" height="'+params.height+'">';
		flashCode += '<param name="movie" value="'+movie+'">';		
		for (p in params){
			flashCode += '<param name="'+p+'" value="'+params[p]+'" />';
		}		
		flashCode += '<embed src="'+movie+'" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" ';		
		for (p in params){
			flashCode += p+' = "'+params[p]+'"';
		}		
		flashCode += '></embed></object>';
		document.getElementById(id).innerHTML = flashCode;
	}	
}

// flash detection
var MM_contentVersion = 6;
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;
		var MM_PluginVersion = words[i]; 
	    }
	var MM_FlashCanPlay = MM_PluginVersion >= MM_contentVersion;
}
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('MM_FlashCanPlay = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & MM_contentVersion)))\n');
	document.write('</SCR' + 'IPT\> \n');
}