<!-- 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		= "000000"	 // ADSHOW BACKGROUND COLOR
var flashmode		= "opaque"	 // FLASH WMODE | window | opaque | transparent |



// SHOW THIS IF FLASH SOFTWARE IS NOT DETECTED

var alternateContent = '<img src="picts/homeflash-1.jpg" width="'+flashwC+'" height="'+flashhC+'" border="0" ><br>';



// 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 ADSHOW WITH DETECTION VER 3.0

   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",
				"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
}
// -->
