<!-- Begin
// USE lowercase FOR ALL OPTIONS


var flashwC		= "100%"	 // WIDTH OF THE FLASH
var flashhC		= "125"		 // HEIGHT OF THE FLASH
var flashColor		= "00366B"	 // BACKGROUND COLOR
var flashmode		= "opaque"	 // FLASH WMODE | window | opaque | transparent |
var showflash		= "yes"		 // SHOW FLASH & DETECTION TEST MODE | yes | no |

var noflashimg		= "flash/slider.jpg"	// NO FLASH DISPLAY IMAGE



// COPYRIGHT 2012 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law
// FLASH LOGO WITH DETECTION VER 3.0
// YOU DO NOT NEED TO EDIT BELOW THIS LINE

// SHOW THIS IF FLASH SOFTWARE IS NOT DETECTED

var alternateContent = '<div style="background-image: url('+noflashimg+'); background-repeat: repeat-x; width: '+flashwC+'; height: '+flashhC+'">'
  			+ '<img src="picts/spacer.gif" width="20" height="'+flashhC+'" border="0"><br>'
  			+ '</div>';
   if (showflash == "yes") {
// Version check based upon the values entered in "FLASH Globals" in javascripts.js
var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

// Check to see if the version meets the requirements for playback
if (hasReqestedVersion) {
	// if we've detected an acceptable version
	// embed the Flash Content SWF when all tests are passed

	AC_FL_RunContent(
				"src", "slider.swf",
				"width", flashwC,
				"height", flashhC,
				"align", "middle",
				"id", "slider",
				"quality", "high",
				"wmode", flashmode,
				"bgcolor", "#"+flashColor,
				"name", "slider",
				"allowScriptAccess","sameDomain",
				"type", "application/x-shockwave-flash",
				'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
				"pluginspage", "http://www.adobe.com/go/getflashplayer"
	);
} else {  // flash is too old or we can't detect the plugin
document.write(alternateContent);  // insert non-flash content
}
}
else {
document.write(alternateContent);  // insert non-flash content
}
// -->
