<!-- Begin FLASH OPTIONS

// ONLY USE lowercase FOR ALL OPTIONS


var showflash		= "yes"		// SHOW FLASH
var flashwC		= "850"		// WIDTH OF THE FLASH
var flashhC		= "300"		// HEIGHT OF THE FLASH
var flashColor		= "000000"	// BACKGROUND COLOR (edit in css)
var flashmode		= "transparent"	// FLASH WMODE | window | opaque | transparent |



// FONT OPTIONS | garamond | tahoma | avantgarde | notext |

var flashtype		= "avantgarde"	// HOME FLASH TEXT STYLE
var buttoncolor		= "white"	// HOME FLASH BUTTON COLOR | white | black |





// COPYRIGHT 2011 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law
// YOU DO NOT NEED TO EDIT BELOW THIS LINE
// FLASH WITH DETECTION VER 3.0.ts

// SHOW THIS IF FLASH SOFTWARE IS NOT DETECTED

var alternateContent = '<img src="text-slideshow/homeflash1.jpg" width="'+flashwC+'" height="'+flashhC+'" border="0"><br>';

document.write('<div class="homeflash">');

   if (showflash == "yes") {

// Version check based upon the values entered in "FLASH Globals" in FlashDetect.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", "text-slideshow/homeflash-"+flashtype+"-"+buttoncolor+".swf",
				"width", flashwC,
				"height", flashhC,
				"align", "center",
				"id", "homeflash",
				"quality", "high",
				"wmode", flashmode,
				"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
}
document.write('</div>');
// -->
