home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 May
/
Chip_1999-05_cd.bin
/
zkuste
/
MSIE5
/
ieak5cd.exe
/
RCDATA
/
CABINET
/
ieakhelp.chm
/
diagrams.js
< prev
next >
Wrap
Text File
|
1999-02-24
|
798b
|
34 lines
//============================================
// get the title written
var sPassedTitle = window.dialogArguments;
var sTitle = " ";
if (sPassedTitle != null){
sTitle = sPassedTitle;
}
document.write("<Title>" + sTitle + "</Title>")
//=============================================
// Escape key handler
document.attachEvent ("onkeydown", byeBye);
function byeBye(){
//test for escape key
if(window.event.keyCode == 0x1b) self.close();
}
//============================================
// resize the window if it's got a funky title bar
window.attachEvent ("onload", adjustHeight);
function adjustHeight(){
var iOffset = document.body.clientHeight - 369;
if (iOffset != 0) dialogHeight = (parseInt(dialogHeight) - iOffset) + "px";
}