// Author: Edward Raddar
// Date: 06/27/2008
// Purpose: Checks the clients browser and redirect if not Internet Explorer
// Reason: Bank Group web applications are not fully support by browsers other than IE

var theBrowser = navigator.appName;
var ie = 'Microsoft Internet Explorer';
var errorPage = '/help/errors/ie_compat.aspx' // Error page if browser not match

function checkBrowser(){
if (theBrowser != ie)
	document.location = errorPage;
}
//document.onload = checkBrowser();
