//
//-------------------------------------------------------------------
// Licensed Materials - Property of IBM
//
// WebSphere Commerce
//
// (c) Copyright IBM Corp. 2006
//
// US Government Users Restricted Rights - Use, duplication or
// disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
//-------------------------------------------------------------------
//

      // 

       //The following checkBrowser function is for checking browser version when the Buyer
       //Approval Tool link is hit.  This is transferring the user Tools page which requires
       //the correct supported browser version.  Note that the link will not be visible for
       //user without Buyer Approver role.
       //
       //The same code is used in Left Nav Bar where the link to RFQ also requires this browser
       //version checking.

       function checkBrowser() {
       	var bRightBrowser = false;
       
          if (!window.opera && document.all) {
        	bRightBrowser = true;
			}
			

          return bRightBrowser;

       }
