// JavaScript Document
<!--
function loadFlash(file, w, h){
	
	//hasReqestedVersion = false;
	// 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", file,
					"width", w,
					"height", h,
					"align", "middle",
					"id", "container",
					"quality", "high",
					"bgcolor", "#FFFFFF",
					"name", "movie",
					"allowScriptAccess","always",
					"type", "application/x-shockwave-flash",
					'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
					"pluginspage", "http://www.adobe.com/go/getflashplayer",
					"base", "."
		);
	} else {  // flash is too old or we can't detect the plugin

		var alternateContent = '<p>'
		+ 'This content requires the Adobe Flash Player and a browser with JavaScript enabled. '
		+ '<a href=http://www.adobe.com/go/getflash/>Get Flash</a>'
		+ '</p>';
		document.write(alternateContent);  // insert non-flash content
	}
}
// -->
