<!-- Begin

// ADSHOW OPTIONS


var showflash		= "yes"		// SHOW FLASH ADSHOW
var flashwC		= "575"		// WIDTH OF THE FLASH ADSHOW
var flashhC		= "350"		// HEIGHT OF THE FLASH ADSHOW
var flashColor		= "FFFFFF"	// ADSHOW BACKGROUND COLOR (edit in css)
var slidepause		= "8"		// DELAY BETWEEN SLIDES



// SHOW THIS IF FLASH SOFTWARE IS NOT DETECTED

var alternateContent = '<img src="picts/nonflash.jpg" width="'+flashwC+'" height="'+flashhC+'" border="0" ><br>';


// FLASH ADSHOW WITH DETECTION VER 3.0b

   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", "homeflash.swf",
				"width", flashwC,
				"height", flashhC,
				"align", "middle",
				"flashvars", "slidedelay="+slidepause,
				"id", "homeflash",
				"quality", "high",
				"wmode", "transparent",
				"bgcolor", "#"+flashColor,
				"name", "homeflash",
				"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
}
// -->
