// JavaScript Document

var requiredMajorVersion = 8;
// Minor version of Flash required
var requiredMinorVersion = 0;
// Revision of Flash required
var requiredRevision = 0;
// the version of javascript supported
var jsVersion = 1.0;
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
} else {  // flash is too old or we can't detect the plugin
	var alternateContent = '<div id="warning">In order for JBA.com to function properly, you must have <a href="http://www.google.com/support/bin/answer.py?answer=23852" target="_blank">JavaScript turned on</a>, and <a href="http://www.adobe.com/go/getflash/" target="_blank">Adobe Flash installed</a>. </div>';
	document.write(alternateContent);  // insert non-flash content
}
