// JavaScript Document
// This script replacs the embed tag for the new Internet Explorer so that it will not pop up a dialog asking for permissioin
// to view the embedded Flash content


// This is the function for the Flash Movie on the default page
function RunFlashHeader()
{
    document.write('<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="414" height="105" align="right">\n');
    document.write('<param name="movie" value="flash/header.swf" />\n');
	document.write('<param name="quality" value="high">');
	document.write('<param name="menu" value="false">');
	document.write('<embed src="flash/header.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="414" height="105" align="right"></embed>');
    document.write('</object>\n');
}

// This is the function for the Flash Movie on the default page
function RunFlashHeader_White()
{
    document.write('<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="770" height="105">\n');
    document.write('<param name="movie" value="flash/header_white.swf" />\n');
	document.write('<param name="quality" value="high">');
	document.write('<param name="menu" value="false">');
	document.write('<embed src="flash/header_white.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="770" height="105"></embed>');
    document.write('</object>\n');
}