<!-- Begin

// ADSHOW OPTIONS

// COPYRIGHT 2011 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law


var showflash		= "yes"		// SHOW FLASH ADSHOW (edit to no for testing)
var flashwC		= "575"		// WIDTH OF THE FLASH ADSHOW
var flashhC		= "350"		// HEIGHT OF THE FLASH ADSHOW
var flashColor		= "666666"	// ADSHOW BACKGROUND COLOR (edit pictbackground in css)
var slidepause		= "5"		// DELAY BETWEEN SLIDES

var alternateContent = '<img src="AdShow/AdShow-1.jpg" border="0" width="'+flashwC+'" height="'+flashhC+'"><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 above in "Globals"
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", "AdShow/AdShow",
				"width", flashwC,
				"height", flashhC,
				"align", "middle",
				"flashvars", "slidedelay="+slidepause,
				"id", "AdShow",
				"quality", "high",
				"wmode", "transparent",
				"bgcolor", "#"+flashColor,
				"name", "AdShow",
				"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);
}
}
else {
document.write(alternateContent);
}
// -->

