<!-- Begin

// ADSHOW OPTIONS

// COPYRIGHT 2009 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law




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




document.write('<table cellpadding="0" cellspacing="0" border="0" width="'+flashwC+'" height="'+flashhC+'" bgcolor="#'+flashColor+'" class="homeflash"><tr><td align="center" valign="middle">');


// FLASH CHANGER WITH DETECTION VER 1.7

   if (showflash == "yes") {

if (navigator.userAgent.indexOf('Safari') != -1) {
document.write('<img src="picts/homeflash-1.jpg" width="575" height="350"></a><br>');
}
else {

// 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", "homeflash",
				"width", flashwC,
				"height", flashhC,
				"align", "middle",
				"id", "detectionExample",
				"quality", "high",
				"wmode", "transparent",
				"bgcolor", "#"+flashColor,
				"name", "detectionExample",
				"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
	var alternateContent = '<span class="title">Unable to view animation</span><br>'

  	+ 'Flash player version ' + GetSwfVer() + ' was detected on your browser.<br>'

  	+ 'This content requires the latest Flash Player.<br>'
   	+ '<a href="http://get.adobe.com/flashplayer/">Click Here to Get Flash<br><br>'
	+ '<img src="picts/get_flashplayer.gif" border="0" alt="Get Flash"></a><br>';

;
	document.write(alternateContent);  // insert non-flash content



}


}
}
else {

document.write('<img src="picts/homeflash-1.jpg" width="575" height="350"></a><br>');

}


document.write('</td></tr></table>');


// -->
