88 lines
1.2 KiB
HTML
88 lines
1.2 KiB
HTML
|
<HTML>
|
||
|
|
||
|
<HEAD>
|
||
|
|
||
|
<STYLE>
|
||
|
BODY {
|
||
|
margin: 0;
|
||
|
background-color: black;
|
||
|
font-family: Verdana;
|
||
|
}
|
||
|
|
||
|
BUTTON {
|
||
|
font-family: "MS Sans Serif";
|
||
|
font-size: 8pt;
|
||
|
width: 80;
|
||
|
}
|
||
|
</STYLE>
|
||
|
|
||
|
</HEAD>
|
||
|
|
||
|
<BODY BGCOLOR=black class=body>
|
||
|
|
||
|
<!--CALL WINDOW.EXTERNAL-->
|
||
|
<SCRIPT>
|
||
|
function DoCancel()
|
||
|
{
|
||
|
window.external.Cancel();
|
||
|
}
|
||
|
|
||
|
function DoExisting()
|
||
|
{
|
||
|
window.external.Existing();
|
||
|
}
|
||
|
</SCRIPT>
|
||
|
|
||
|
<SCRIPT>
|
||
|
var iTimerID;
|
||
|
|
||
|
<!--REQUIRED FUNCTION PROTOTYPE :: DO NOT ALTER-->
|
||
|
function DisableCancel(bDisabled)
|
||
|
{
|
||
|
g_btnCancel.disabled = bDisabled;
|
||
|
|
||
|
if(bDisabled)
|
||
|
iTimerID = setTimeout("DisableCancel(false);" , 6000);
|
||
|
else
|
||
|
clearTimeout(iTimerID);
|
||
|
}
|
||
|
</SCRIPT>
|
||
|
|
||
|
|
||
|
<SCRIPT>
|
||
|
<!--REQUIRED FUNCTION PROTOTYPE :: DO NOT ALTER-->
|
||
|
function HideExisting(bHide)
|
||
|
{
|
||
|
if(bHide)
|
||
|
g_btnExisting.style.visibility = "hidden";
|
||
|
else
|
||
|
g_btnExisting.style.visibility = "visible";
|
||
|
}
|
||
|
</SCRIPT>
|
||
|
|
||
|
</SCRIPT>
|
||
|
<table cellspacing=0 cellpadding=0>
|
||
|
<tr>
|
||
|
<td width=410>
|
||
|
<br>
|
||
|
<br>
|
||
|
</td>
|
||
|
<td width=85 align=right>
|
||
|
<BUTTON onclick="DoExisting();"
|
||
|
ID=g_btnExisting
|
||
|
>
|
||
|
Use Existing
|
||
|
</BUTTON>
|
||
|
</td>
|
||
|
<td width=85 align=right>
|
||
|
<BUTTON onclick="DoCancel();"
|
||
|
ID=g_btnCancel
|
||
|
>
|
||
|
Cancel
|
||
|
</BUTTON>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
</BODY>
|
||
|
</HTML>
|