var url = domain + '/images/anima_index.swf'; // domain defined in global.js
var width = 464; // width
var height = 173; // height
var wmode = 'transparent'; // set to transparent to enable DHTML to float above Flash
var flashVars = ''; // Parameters passed to Flash object
var requiredVersion = 6 // Minimum required version of Flash plugin
var maxVersion = 8 // Maximum version of Flash plugin to detect. Best to just set it one more than the latest version
var actualVersion = 0; // Initialize
var supportSafari = (navigator.appVersion.indexOf("Safari") != -1) ? false :true; // true if we're running Safari
var noFlash = '<img src="' +domain+ 'images/noflash.gif" alt="" width="' +width+ '" height="' +height+ '" />'; // URL of page or markup to be displayed if the actual version is less than required.

// Initialize Flash object detection
InitFlash(maxVersion);

// Display Flash
	// In-line style attribute used to eliminate need to update CSS if the dimensions ever change
document.write('<div id="flash" style="width:' +width+ 'px; height:' +height+ ';">')

	DisplayFlash(false,supportSafari);

document.write('</div>');