<html><head>
<title>Lido/Flight Briefing Support Page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="expires" content="0" >
<link rel="stylesheet" href="style.css" type="text/css" title="default">
<script language="JavaScript">
////////////////////////////////////////////////////////////
// This chunk of JavaScript does a 1-2-3 cha-cha-cha:
// 1. Redirects current window to https: if enabled
// 2. Reloads itself in a (new) window named wwwbrfWin
// 3. Loads extra/index.jsp in current window if not named wwwbrfWin
////////////////////////////////////////////////////////////
var startUrl = window.location.href;
var extraUrl = "extra/index.jsp";
var hasHTTPS = false;
var wwwbrfWinName = "wwwbrfWin";
var isNetscape = (navigator.appName.indexOf("Netscape") != -1) ? true : false;
var isHTTP = (window.location.protocol == "http:") ? true : false;
var isHTTPS = (window.location.protocol == "https:") ? true : false;
var isFile = (window.location.protocol == "file:") ? true : false;
var urlProtocol = window.location.protocol;
var urlHostname = window.location.hostname;
var urlPort = window.location.port;
var urlPathname = window.location.pathname;
var urlHash = window.location.hash;
var urlSearch = window.location.search;
var maxWidth = screen.availWidth - 9;
var maxHeight = screen.availHeight - 49;
////////////////////////////////////////////////////////////
// Step 1 cha-cha-cha
if (!isFile && isHTTP && hasHTTPS) {
if (urlPort != "")
urlPort = parseInt(urlPort) - 80 + 443;
urlProtocol = "https:";
startUrl = urlProtocol + "//" + urlHostname + (urlPort != "" ? ":" + urlPort : "")
"/" + urlPathname + "#" + urlHash + "?" + urlSearch;
}
if (startUrl != window.location.href) {
window.location = startUrl;
} else {
////////////////////////////////////////////////////////////
// Step 2 cha-cha-cha
if (window.name != wwwbrfWinName) {
wwwbrfWin = window.open(startUrl, wwwbrfWinName, ""
+ "location=0,"
+ "menubar=0,"
+ "toolbar=0,"
+ "status=1,"
+ "resizable=0,"
+ "scrollbars=1,"
+ "titlebar=1,"
+ "left=0,"
+ "top=0,"
+ "width=" + maxWidth + ","
+ "height=" + maxHeight
);
////////////////////////////////////////////////////////////
// Step 3 cha-cha-cha
document.writeln("<center>Please wait...</center>");
setTimeout("wwwbrfWin.focus(); document.location = extraUrl;", 500);
}
}
////////////////////////////////////////////////////////////
</script>
</head>
<frameset rows="50,0,250,*" border="0" frameborder="0" framespacing="0" cols="*">
<frame name="bannerFrame" src="bannerIndex.jsp" frameborder="0" marginwidth="0" marginheight="0" noresize scrolling="no">
<frame name="actionFrame" src="actionIndex.jsp" frameborder="0" marginwidth="0" marginheight="0" noresize scrolling="no">
<frame name="loginFrame" src="loginIndex.jsp" frameborder="0" marginwidth="0" marginheight="0" noresize scrolling="no">
<frame name="infoFrame" src="infoIndex.jsp" frameborder="0" marginwidth="0" marginheight="0" noresize scrolling="no">
</frameset>
</html>