<!--
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
	if (AC_FL_RunContent == 0) {
		alert("Please Contact Administrator.");
	} else {
		// embed the flash movie
		AC_FL_RunContent(
			'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0',
			'width', '742',
			'height', '187',
			'src', 'Flashes/Header',
			'quality', 'best',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'middle',
			'play', 'true',
			'loop', 'true',
			'scale', 'showall',
			'wmode', 'transparent',
			'devicefont', 'false',
			'id', 'Header',
			'bgcolor', '#ffffff',
			'name', 'Header',
			'menu', 'false',
			'allowScriptAccess','sameDomain',
			'movie', 'Flashes/Header',
			'salign', ''
			); //end AC code
	}
} else {  // flash is too old or we can't detect the plugin
	var alternateContent = ''
	+ '	<div style="position:relative;width:100%;height:100%;background:url(Images/Background/Header.jpg);">'
	+ '		<a href="Menu.asp?MSID=1&amp;MIN=1"><div style="position: absolute; width: 70px; height: 22px; z-index: 100; left: 603px; top: 9px; Cursor: hand;"></div></a>'
	+ '		<a href="Menu.asp?MSID=1&amp;MIN=2"><div style="position: absolute; width: 37px; height: 22px; z-index: 100; left: 557px; top: 9px; Cursor: hand;"></div></a>'
	+ '		<a href="Menu.asp?MSID=1&amp;MIN=3"><div style="position: absolute; width: 31px; height: 22px; z-index: 100; left: 518px; top: 9px; Cursor: hand;"></div></a>'
	+ '		<a href="Menu.asp?MSID=1&amp;MIN=4"><div style="position: absolute; width: 38px; height: 22px; z-index: 100; left: 472px; top: 9px; Cursor: hand;"></div></a>'
	+ '		<a href="Menu.asp?MSID=1&amp;MIN=5"><div style="position: absolute; width: 60px; height: 22px; z-index: 100; left: 402px; top: 9px; Cursor: hand;"></div></a>'
	+ '		<a href="Menu.asp?MSID=1&amp;MIN=6"><div style="position: absolute; width: 52px; height: 22px; z-index: 100; left: 344px; top: 9px; Cursor: hand;"></div></a>'
	+ '	</div>';

	document.write(alternateContent);  // insert non-flash content
}
// -->

