

<!--
// 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", "http://www.nordfab.com/view/assets/images/fbin/v_6",
				"width", "88",
				"height", "79",
				"align", "middle",
				"id", "detectionExample",
				"quality", "high",
				"bgcolor", "#FFFFFF",
				"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 = '<a href="#myself##xfa.videos#"><img src="http://www.nordfab.com/view/assets/images/fbin/qf_still.jpg" border="0"></a>'
	+ '<br><br>This content requires the Adobe Flash 8 Player. '
	+ '<a href="http://www.adobe.com/go/getflash" target="_blank"/><br>Get Flash 8</a>';
	document.write(alternateContent);  // insert non-flash content
}
// -->


