<!-- START
// XML CHANGER VERSION 2.01
// XML CHANGER 2 SUPPORT: - http://www.allwebco-templates.com/support/S_flash_image_changerXML2-ADDON.htm
// XML CHANGER 2 VARIABLES YOU CAN EDIT - ALSO EDIT THE image .xml file


var XML2showsflash	= "yes"		// SHOW FLASH & TESTING MODE
var XML2flashwidth	= "720"		// WIDTH OF THE FLASH
var XML2flashheight	= "475"		// HEIGHT OF THE FLASH
var XML2flashcolor	= "FFFFFF"	// BACKGROUND COLOR
var XML2flashmode	= "transparent"	// FLASH WMODE | window | opaque | transparent |


var XML2border		= "000000"	  // BORDER COLOR
var XML2borderwidth	= "0"		  // BORDER WIDTH


// LOCATE WITH A DIV OPTIONS

var divlocate2		= "no"		// yes OR no TO LOCATE THE CHANGER WITH A DIV
var divLR2		= "left"	// SIDE TO LOCATE ON left OR right
var divXloc2		= "10"		// PIXELS FROM EDGE
var divYloc2		= "10"		// PIXELS FROM TOP OF PAGE



// 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.XMLchanger

// SHOW THIS IF FLASH SOFTWARE IS NOT DETECTED

var alternateContent = '<img src="XML-Changer/image1.jpg" width="'+XML2flashwidth+'" height="'+XML2flashheight+'" border="0"><br>';

   if (divlocate2 == "yes") {
document.write('<div id="XMLFlash" style="position:absolute; visibility:visible; '+divLR2+': '+divXloc2+'px; top: '+divYloc2+'px; z-index:10;">');
}
document.write('<table cellpadding="0" cellspacing="0" border="0" bgcolor="'+XML2flashcolor+'" style="background-color: #'+XML2flashcolor+'; border: #'+XML2border+' '+XML2borderwidth+'px solid;"><tr><td>');
   if (XML2showsflash == "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", "XML-Changer/XML-Changer.swf",
				"width", XML2flashwidth,
				"height", XML2flashheight,
				"align", "center",
				"id", "XML-Changer",
				"quality", "high",
				"wmode", XML2flashmode,
				"bgcolor", "#"+XML2flashcolor,
				"name", "XML-Changer",
				"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('</td></tr></table>');
   if (divlocate2 == "yes") {
document.write('</div>');
}
// -->
