/******************************************************************

Copyright © Global Knowledge Software LLC 2007.  All Rights Reserved.

This program is protected by U.S. and International Copyright and
Patent Laws.  Unauthorized duplication and/or distribution of this
program is strictly prohibited. Distribution and duplication of this
program are limited by license. If you do not currently have a valid
license from Global Knowledge for this program, any copying or
distribution of the program is unauthorized.  If you do have a current
license from Global Knowledge to utilize this program, your use is
strictly limited by the terms of that license.

Patent Pending.

******************************************************************/

var bver_ok;
if(navigator.appName.indexOf("Microsoft") != -1){
	var appVerArray = navigator.appVersion.split(";");
	var appVer = appVerArray[1];
	appVer = appVer.substr(6)
	appVer = parseFloat(appVer);
	bver_ok = (appVer>=5.5) ? true : false;
}
else{
	bver_ok = false;
}
if (!bver_ok)
{
	var url="";
	if (window.notsupp_baseurl)
		url=notsupp_baseurl;
	url+="notsupp.html";
	location.replace(url);
}

