gecko-dev/cmd/dialup/tools/kit/kit.htm

101 строка
2.9 KiB
HTML

<!-- -*- Mode: HTML; tab-width: 2; indent-tabs-mode: nil -*-
The contents of this file are subject to the Netscape Public License
Version 1.0 (the "NPL"); you may not use this file except in
compliance with the NPL. You may obtain a copy of the NPL at
http://www.mozilla.org/NPL/
Software distributed under the NPL is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
for the specific language governing rights and limitations under the
NPL.
The Initial Developer of this code under the NPL is Netscape
Communications Corporation. Portions created by Netscape are
Copyright (C) 1998 Netscape Communications Corporation. All Rights
Reserved.
-->
<HEAD>
<TITLE>Package Selection</TITLE>
<SCRIPT LANGUAGE="JavaScript" ID="kit100" ARCHIVE="kit.jar">
function loadData()
{
netscape.security.PrivilegeManager.enablePrivilege("AccountSetup");
//get the platform
var thePlatform = new String(navigator.userAgent);
var x=thePlatform.indexOf("(")+1;
var y=thePlatform.indexOf(";",x+1);
thePlatform=thePlatform.substring(x,y);
// check browser version
var theAgent=navigator.userAgent;
var x=theAgent.indexOf("/");
if (x>=0) {
theVersion=theAgent.substring(x+1,theAgent.length);
x=theVersion.indexOf(".");
if (x>0) {
theVersion=theVersion.substring(0,x);
}
if (parseInt(theVersion)>=4) {
top.toolbar.visible=false;
top.menubar.visible=false;
top.locationbar.visible=false;
top.personalbar.visible=false;
top.statusbar.visible=false;
top.scrollbars.visible=false;
var screenWidth = screen.width;
var screenHeight = screen.height;
var windowTitleHeight=20;
var windowFrameWidth=(7*2);
var windowFrameHeight=(15*2);
var menuBarHeight = 0;
var thePlatform = new String(navigator.userAgent);
var x=thePlatform.indexOf("(")+1;
var y=thePlatform.indexOf(";",x+1);
thePlatform=thePlatform.substring(x,y);
if (thePlatform == "Macintosh") { // Macintosh support
menuBarHeight = 20; // adjust for menubar size
screenHeight = screenHeight - menuBarHeight;
}
var ourWidth = 640 - windowFrameWidth;
var ourHeight = 480 - menuBarHeight - windowFrameHeight;
var x = (screenWidth/2) - (ourWidth/2) - windowFrameWidth;
var y = (screenHeight/2) - (ourHeight/2) - windowTitleHeight - windowFrameHeight;
if (x<-3) x=-3;
if (y<0) y=0;
moveTo(x,y);
if (ourWidth > screenWidth) ourWidth = screenWidth;
if (ourHeight > screenHeight) ourHeight = screenHeight;
resizeTo(ourWidth,ourHeight);
window.setHotkeys(false);
window.setResizable(false);
navigator.preference("general.always_load_images", true);
}
}
if (thePlatform == "Macintosh")
window.location.replace("mkit.htm");
else
window.location.replace("wkit.htm");
}
</SCRIPT>
</HEAD>
<BODY onload="loadData()" ID="kit101">
</BODY>
</HTML>