function fl_BrowserCheck()
{
var OKtogo=false;
var an=navigator.appName;
var av=parseInt(navigator.appVersion);
if(an == "Microsoft Internet Explorer")
{
if(av>=4)OKtogo=true;
}
if(an == "Netscape")
{
if(av>=5)OKtogo=true;
}
if(!OKtogo)document.location.href = "fl_browser.html";
var sTest = FeePayable("S","P");
if(isNaN(parseInt(sTest,10))) document.location.href = "fl_browser.html";
storeCookie('cookietester','wise123',null,'/',null,null);
var readback=readCookie('cookietester').substr(0,7);
if(readback!='wise123')document.location.href = "fl_cookie.html";
}
function fl_FrameSetOnLoad()
{
var sParam=location.search;
if(sParam.length!=0)
{
var sPage=sParam.substr(1);
frames["PageContent"].location.replace(sPage);
}
}



