// Check for Flash plugin and identify version
flash = { installed:false, version:0, rev:0, forcehide:false }; 

if(navigator.plugins && navigator.plugins.length > 0) { // NS3+, Mozilla, Opera3+, IE5+ Mac (support plugin array)
	if(navigator.plugins["Shockwave Flash"]) {
		flash.installed = true;
		var flash_desc = navigator.plugins["Shockwave Flash"].description;
        flash.version=parseInt(flash_desc.substring(flash_desc.indexOf(".")-1));
        flash.rev=parseInt(flash_desc.substring(flash_desc.indexOf("r")+1));
	}
}
else if(window.ActiveXObject) { // IE4+ Win32:  attempt to create an ActiveX object using VBScript
	document.write('<scr' + 'ipt language="VBScript"\> \n'+
		'on error resume next \n'+
		'dim obFlash \n'+
		'set obFlash = CreateObject("ShockwaveFlash.ShockwaveFlash.8") \n'+
		'if IsObject(obFlash) then \n'+
		'flash.version = 8 \n'+
		'flash.installed = true \n'+
		'else set obFlash = CreateObject("ShockwaveFlash.ShockwaveFlash.7") end if \n'+
		'if flash.version < 8 and IsObject(obFlash) then \n'+
		'flash.version = 7 \n'+
		'flash.installed = true \n'+
		'else set obFlash = CreateObject("ShockwaveFlash.ShockwaveFlash.6") end if \n'+
		'if flash.version < 7 and IsObject(obFlash) then \n'+
		'flash.version = 6 \n'+
		'flash.installed = true \n'+
		'else set obFlash = CreateObject("ShockwaveFlash.ShockwaveFlash.5") end if \n'+
		'if flash.version < 6 and IsObject(obFlash) then \n'+
		'flash.version = 5 \n'+
		'flash.installed = true \n'+
		'end if'+
		'</scr' + 'ipt\> \n');
}

flash.movies = new Array();

function addFlash() {
	if(flash.installed && flash.version >= 6) {
		document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="760" height="262"><param name="movie" value="../GLOBAL/swf/flash.swf"><param name="quality" value="high"><embed src="../GLOBAL/swf/flash.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="760" height="262"></embed></object>');
	} else {
		document.write('<img src="../GLOBAL/images/hero_big_home2.jpg" alt="Putting you in control" width="760" height="262" border="0" usemap="#heromap"><map name="heromap"><area shape="rect" coords="158,201,288,232" href="../how/index.asp" alt="How it works"><area shape="rect" coords="17,201,147,232" href="../apply/index.asp" alt="Apply now"></map>');
	}
}
