home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / ins.cab / nnexpgls.asp < prev    next >
Text File  |  1997-10-12  |  1KB  |  74 lines

  1. <% Response.Expires = 0 %>
  2. <%
  3. L_PAGETITLE_TEXT        = "Microsoft Internet Service Manager"
  4.  
  5. %>
  6. <!--#include file="_cnst.asp" -->
  7.  
  8. <% if (cont = true) then %>
  9.  
  10. <HTML>
  11.  
  12. <TITLE><% = L_PAGETITLE_TEXT %></TITLE>
  13.  
  14. </HEAD>
  15.  
  16. <BODY TEXT="#000000" LINK="#B90000" BGCOLOR="#CCCCCC" TOPMARGIN=10 VLINK="#B90000">
  17.  
  18. <TABLE BORDER=0>
  19.  
  20. <% REM Enumerate list from uForm object in "nngrphd.asp" %>
  21. <script language = "javascript">
  22.  
  23. var cTotalGroups = parent.head.uForm.itemList.length;
  24.  
  25. for ( i = 0; i < cTotalGroups; i++ )
  26. {
  27.     if( i == parent.head.uForm.selectedItem)
  28.     {
  29.         itemColor = '#F1F1F1';
  30.         itemLink = '<A HREF="javascript:parent.head.uForm.removeItem(' + i + ')">';
  31.     }
  32.     else
  33.     {
  34.         itemColor = '#CCCCCC' ;
  35.         itemLink = '<A HREF="javascript:parent.head.uForm.selectItem(' + i + ')">';
  36.     }        
  37.     itemText = parent.head.uForm.itemList[i].name;
  38.     itemId = parent.head.uForm.itemList[i].index;        
  39.     
  40.     listEntry = '<tr><td width="25"> </td>' + 
  41.                 '<td align="left" bgcolor=' + itemColor + 
  42.                 ' width="500"    ><FONT SIZE=2 FACE="Arial"><A NAME="' + i + '">' + 
  43.                 itemLink + itemText + '</font></a><br></td></tr>';
  44.     
  45.     document.writeln( listEntry );
  46. }
  47. </script>
  48.     <TR>
  49.         <TD WIDTH=25> </TD>
  50.         <TD> </TD>
  51.         <TD> </TD>
  52.     </TR>
  53.  
  54. </TABLE>
  55.  
  56. </BODY>
  57. </HTML>
  58.  
  59. <% end if %>
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.