57 lines
2 KiB
HTML
57 lines
2 KiB
HTML
<!--NOTE: this file is expected to be ANSI - do not add any localizable strings to it !!! -->
|
|
<script language = "JavaScript">
|
|
function OnLoad()
|
|
{
|
|
// calculate the layout of the tasks
|
|
var VisualPercent;
|
|
|
|
document.vlinkColor = document.linkColor; // make sure that visited links don't look different
|
|
|
|
// connect up the event source
|
|
MMCEvents.ConnectTo(external.Document.Application);
|
|
|
|
MMCViewElement.addBehavior("#default#mmcview");
|
|
|
|
UpdateState();
|
|
}
|
|
</script>
|
|
|
|
<body id="body" scroll='no' onload='OnLoad()' tabIndex='-1'>
|
|
<DIV style="position:absolute; top:0; left:0">
|
|
<TABLE WIDTH="100%" cellspacing="0" cellpadding="0" COLS="2">
|
|
<TR>
|
|
<TD><SPAN style="width:32px"></SPAN></TD>
|
|
<TD id="TaskpadName"><NOBR>@@CONSOLETASKPADNAME@@</NOBR></TD>
|
|
</TR>
|
|
</TABLE>
|
|
</DIV>
|
|
<TABLE WIDTH="100%" HEIGHT="100%" cellspacing="0" cellpadding="0">
|
|
<TR id="TitleRow" WIDTH="100%" VALIGN="TOP">
|
|
<TD id="LeftPanel" WIDTH="100%">
|
|
<object id='FolderIcon' classid="clsid:B0395DA5-6A15-4E44-9F36-9A9DC7A2F341" tabIndex='-1'> <!-- do not display the notch for horizontal taskpads-->
|
|
<PARAM NAME="Notch" VALUE="0"></PARAM>
|
|
</object>
|
|
</TD>
|
|
</TR>
|
|
<tr ID="DescriptionRow">
|
|
<td id='TaskpadDescription' >
|
|
@@CONSOLETASKPADDESCRIPTION@@<BR />
|
|
</td>
|
|
</tr>
|
|
<tr id="TopPanelRow" style="height:100%;">
|
|
<td id='TopPanel' style="padding:0; border:solid windowtext 1;" >
|
|
<DIV id ="MMCViewElement" style="position:relative; height:100%; width:100%; left:0%;" ></DIV>
|
|
</td>
|
|
</tr>
|
|
<TR valign="top">
|
|
<TD ID="BottomPanel" VALIGN="TOP">
|
|
<DIV STYLE="overflow-y:auto; overflow-x:none; height:@@BOTTOMPANEHEIGHT@@;">
|
|
@@TASKS@@
|
|
</DIV>
|
|
</TD>
|
|
</TR>
|
|
</TABLE>
|
|
<object id='MMCEvents' classid="clsid:ADE6444B-C91F-4e37-92A4-5BB430A33340" tabIndex='-1'></object>
|
|
</body>
|
|
|