//redirect user if the browser is not supported (< version 4)
if (mBrowser.isNotSupported)
{
	//redirect if the browser is not supported
	//window.location.href = "/notSupported.jsp";
}
else
{

	if (mBrowser.isWin && mBrowser.isNS4)
	{ //For Windows & Netscape
	}
	else if (mBrowser.isMac && mBrowser.isNS4)
	{ //For Macs & Netscape
	}
	else if (mBrowser.isMac && mBrowser.isIE)
	{ //For Macs & IE
	}
	else
	{ //For everything else
	}
}

