/**************************************

Author: James Myers
Date: Thursday, September 7, 2006

In early 2006, Microsoft made available an updated version of Internet Explorer browser for Windows.
The changed Internet Explorer for Windows handles QuickTime and other ActiveX controls in a new way.
Rather than automatically rendering and displaying QuickTime content, the updated browser prompts the
user to confirm each active control on a page. Not all websites will be affected by the changes
to Internet Explorer for Windows. Your website may be affected if it features active content that is
contained in an HTML web page using <object>, <embed>, or <applet> tags.

Both of the above methods rely on JavaScript. A small percentage of visitors to your site may have
disabled JavaScript in their browsers. The techniques suggested above will not work for these few 
users—they won't see your content at all.

One thing to keep in mind is that many or most Internet Explorer users who have disabled JavaScript
have also disabled support for ActiveX controls. Therefore, users who have disabled ActiveX have not
been seeing QuickTime content displayed in Internet Explorer for Windows and the migration to JavaScript
techniques for embedded content doesn't alter or affect their experience. You only need to be concerned
about users who have disabled JavaScript, but have ActiveX enabled.

***************************************/


/* INSERTS FLASH MAP ON HOMEPAGE */
function InsertFlashMap() {
	document.write('<object classid="clsid: clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="757" height="95" id="flashmap" align="middle">\n');
	document.write('<param name="allowScriptAccess" value="always" />\n');
	document.write('<param name="movie" value="../flash/flashmap.swf" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="wmode" value="transparent">\n');
	document.write('<embed src="flash/flashmap.swf" wmode="transparent" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="532" height="325"></embed>\n');
	document.write('</object>\n');
}

/* INSERTS DFW HOSTS FLASH */
function InsertDFWHosts() {
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="303" height="144" id="DallasHost" align="top">\n');
	document.write('<param name="allowScriptAccess" value="always" />\n');
	document.write('<param name="movie" value="flash/DallasHost.swf" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="menu" value="false" />\n');
	document.write('<param name="wmode" value="transparent">\n');
	document.write('<embed src="flash/DallasHost.swf" menu="false" quality="high" bgcolor="#ffffff" width="303" height="144" name="DFWHost" align="top" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n');
	document.write('</object>\n');
}

/* INSERTS OKC HOSTS FLASH */
function InsertOKCHosts() {
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="303" height="144" id="Oklahoma City Host" align="top">\n');
	document.write('<param name="allowScriptAccess" value="always" />\n');
	document.write('<param name="movie" value="flash/OKCHost.swf" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="menu" value="false" />\n');
	document.write('<param name="wmode" value="transparent">\n');
	document.write('<embed src="flash/OKCHost.swf" menu="false" quality="high" bgcolor="#ffffff" width="303" height="144" name="OKCHost" align="top" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n');
	document.write('</object>\n');
}