home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC & Mediji 2002 March
/
PCM_0203.iso
/
MEDIA
/
DEMO
/
M10USWEB.exe
/
RCDATA
/
CABINET
/
money.cab
/
msmoney.chm
/
hconlineguide.htc
< prev
next >
Wrap
Text File
|
2001-07-25
|
1KB
|
68 lines
<PUBLIC:COMPONENT URN="-/msmny:onlineguide/-">
<!----------------------------------------------------------
Copyright (c) 2001 Microsoft Corporation.
All rights reserved.
Project: Money 2002
File: hcOnlineGuide.htc
Revised: May 17 2001
Owner: michealh
--------------------------------------------------------- -->
<PUBLIC:ATTACH FOR="element" EVENT="ondocumentready" ONEVENT="Main()" />
<SCRIPT TYPE="text/jscript" LANGUAGE="JScript">
var hGuideWin;
function Main()
{
OpenUserGuide();
with(element)
{
onmouseover = function()
{
this.style.textDecoration = "underline";
}
onmouseout = function()
{
this.style.textDecoration = "none";
}
onclick = function()
{
try
{
OpenUserGuide();
}
catch(e)
{
return;
}
}
}
}
function OpenUserGuide()
{
var iScrnHght = (screen.height > 600)
?
600
:
screen.height
;
var iScrnWdth = (screen.width > 800)
?
800
:
screen.width
;
hGuideWin = window.open("OLM_default.html","hWinUsrGd","resizable=no,status=no,toolbar=no,menubar=no,location=no,directories=no,width=" + (iScrnWdth - 10) + ",height=" + (iScrnHght - 29) + ",top=0,left=0");
try
{
hGuideWin.focus();
}
catch(e)
{
return;
}
}
</SCRIPT>
</PUBLIC:COMPONENT>