home *** CD-ROM | disk | FTP | other *** search
/ Adelphia Powerlink / adelphia-powerlink.iso / install / inc / display.js < prev    next >
Encoding:
JavaScript  |  2003-09-17  |  27.9 KB  |  553 lines

  1. //**********************************************************************************
  2. //**
  3. //**  File Name: display.js
  4. //**
  5. //**  Summary: SupportSoft HTML Display JavaScript File
  6. //**
  7. //**  Description: This file contains global functions and structures used by
  8. //**               serveral pages to help display common page features like 
  9. //**               navigation and help.
  10. //**
  11. //**  Copyright SupportSoft Inc. 2003, All rights reserved.
  12. //**
  13. //**********************************************************************************
  14.  
  15. //**********************************************************************************
  16. // Constants
  17. //**********************************************************************************
  18.  
  19. // Constants for branding
  20. var COMPANY_LOGO;
  21.  
  22. // set the proper company logo based on region/division
  23. COMPANY_LOGO = "../images/sacbr_homenet_header.gif";     // Company logo in upper right corner
  24.  
  25. var PRODUCT_LOGO =         "../images/sacbr_fastaccess_title.gif"; // Product logo in upper left corner
  26. var BANNER_BACKGROUND =    "../images/sacrs_title_texture.gif";     // Background image for top banner
  27. var BANNER_BGCOLOR =       "#0066cc";                               // Background color for top banner
  28. var FOOTER_BGCOLOR =       "#000066";                               // Background color for footer
  29. var TOTAL_STEPS =                4;                                 // Total steps in installation
  30.  
  31. // Status lights
  32. var SRC_STATUS_LIGHT_GREEN = "../images/sacic_light_green.gif";
  33. var SRC_STATUS_LIGHT_RED = "../images/sacic_light_red.gif";
  34. var SRC_STATUS_LIGHT_YELLOW = "../images/sacic_light_yellow.gif";
  35. var gStatusLightGreen = '<img src="' + SRC_STATUS_LIGHT_GREEN + '" border="0" hspace=5>';
  36. var gStatusLightRed = '<img src="' + SRC_STATUS_LIGHT_RED + '" border="0" hspace=5>';
  37. var gStatusLightYellow = '<img src="' + SRC_STATUS_LIGHT_YELLOW + '" border="0" hspace=5>';
  38.  
  39. // Message Constants
  40. var TEXT_DISCONNECTED = "<font color=990000><b>Network Card Disconnected!</b></font>";
  41. var CONFIRM_DHCP = "We will now enable DHCP on your computer. This is necessary in order to proceed.";
  42. var ALERT_REBOOT = "Please close all other programs and press \"OK\" to reboot";
  43.  
  44. // Glossary items for the mouseover event on key terms
  45. var GLOSSARY_CACHE = "<b>What is cache?</b><br>Your browser keeps track of the pages you've visited and saves them to your computer. This helps Web pages load faster when you revisit them. These are stored in your "Temporary Internet Files" directory. These files are not vital to your computer. They merely help load Web pages faster on return visits.";
  46.  
  47. var GLOSSARY_TEMP_FILES = "<b>What are temporary files?</b><br>For many different reasons (like during program installation), your computer occasionally saves files that it needs only temporarily to your temporary files directory on your hard drive.";
  48.  
  49. // Progress images
  50. var img1 = new Image();
  51. img1.src = "../images/sac_status_modem_off.gif";
  52.  
  53. var imgon1 = new Image();
  54. imgon1.src = "../images/sac_status_modem_on.gif";
  55.  
  56. var img2 = new Image();
  57. img2.src = "../images/sac_status_computer_check_off.gif";
  58.  
  59. var imgon2 = new Image();
  60. imgon2.src = "../images/sac_status_computer_check_on.gif";
  61.  
  62. var img3 = new Image();
  63. img3.src = "../images/sac_status_software_off.gif";
  64.  
  65. var imgon3 = new Image();
  66. imgon3.src = "../images/sac_status_software_on.gif";
  67.  
  68. var img4 = new Image();
  69. img4.src = "../images/sac_status_confirm_off.gif";
  70.  
  71. var imgon4 = new Image();
  72. imgon4.src = "../images/sac_status_confirm_on.gif";
  73.  
  74. var imgon5 = new Image();
  75. imgon5.src = "../images/sac_status_confirm_on.gif";
  76.  
  77. //**********************************************************************************
  78. // Functions
  79. //**********************************************************************************
  80.  
  81. //*******************************
  82. // Name:         ssGetImagePath
  83. // Purpose:      Set the path to the images directory so that images will show no matter what
  84. //               subdirectory we are in.
  85. //*******************************
  86. function ssGetImagePath()
  87. {
  88.   var url = location.href;
  89.   url = url.toLowerCase();
  90.   var dslDir = "/Cable/";
  91.   var cableDir = "/cable/";
  92.   var tutorialDir = "/tutorial/";
  93.   var imgPath;
  94.  
  95.   if (url.indexOf(dslDir) != -1 || url.indexOf(cableDir) != -1 || url.indexOf(tutorialDir) != -1)
  96.   {
  97.     imgPath = "../../images/";
  98.   }
  99.   else
  100.   {
  101.     imgPath = "../images/";
  102.   }
  103.   return imgPath;
  104. }
  105. /*
  106. // Minimum requirements
  107. var MIN_MEMORY = 32;
  108. var MIN_CPU = 133;
  109. var MIN_DISK_SPACE = 150;
  110. var MIN_IE_VERSION = 5.0;
  111. var MIN_EMAIL_CLIENT = "Outlook Express";
  112. var MIN_BROWSER_TYPE = "Internet Explorer";
  113. var MIN_PROCESSOR_TYPE = "Pentium"
  114. // Recommended requirements
  115. var REC_MEMORY = 64;
  116. var REC_CPU = 200;
  117. var REC_DISK_SPACE = 150;
  118. */
  119. //*******************************
  120. // Name:         ssDisplayGeneralInfo
  121. // Purpose:      Display diagnostic information that was retrieved from ssGeneralInfo() (sdcnetcheck.js)
  122. //*******************************
  123. function ssDisplayGeneralInfo()
  124. {
  125.   document.write("<table border='0' id=\"checktable\" noshade cellpadding='2' cellspacing='0'><tr valign=middle>")
  126.   document.write("<td colspan=3 align=right><b>Yours</b>  </td><td align=right>  <b>Minimum</b>  </td><td align=right>  <b>Recommended</b>  </td></tr><tr valign=middle>");
  127.   document.write("<td>" + gMemory + "</td><td width=300 nowrap>  <b>Total Physical Memory (MB RAM):</b></td><td nowrap align=right>" + gTotalRam + "</td><td nowrap align=right>" + MIN_MEMORY + "</td><td nowrap align=right>" + REC_MEMORY + "</td><td align=right nowrap><span id=ramFix>" + gRamFix + "</span></td></tr><tr> ");
  128.   document.write("<td>" + gCpuCheck + "</td><td nowrap>  <b>CPU Speed (MHZ):</b></td><td nowrap align=right>" + gCPU + "</td><td nowrap align=right>" + MIN_CPU + "</td><td nowrap align=right>" + REC_CPU + "</td><td align=right nowrap><span id=cpuFix>" + cpuFix + "</span></td></tr><tr> ");
  129.   document.write("<td>" + gFreeSpace + "</td><td nowrap>  <b>Free Disk Space (MB):</b</td><td nowrap align=right>" + gFreeSpaceMB + "</td><td nowrap align=right>" + MIN_DISK_SPACE + "</td><td nowrap align=right>" + REC_DISK_SPACE + "</td><td align=right nowrap><span id=diskFix>" + gDiskFix + "</span></td></tr>");
  130.   document.write("<td width=5>" + gOSImage + "</td><td nowrap width=100%>  <b>Operating System:</b></td><td nowrap colspan=3>" + gOpSystem.toUpperCase() + "</td><td align=right nowrap><span id=osFix>" + gOsFix + "</span></td></tr><tr>");
  131.   document.write("<td width=5>" + gProcessorType + "</td><td nowrap width=100%>  <b>Processor:</b></td><td nowrap colspan=3>" + gProcessor + "</td><td align=right nowrap><span id=osFix>" + gProcessorTypeFix + "</span></td></tr>");
  132.   document.write("</table>");
  133. }
  134.  
  135. //*******************************
  136. // Name:         ssDisplayAdapterInfo
  137. // Purpose:      Display diagnostic information for each network adapter
  138. //*******************************
  139. function ssDisplayAdapterInfo()
  140. {
  141.   // Begin network adapter checks
  142.   var workingAdapter = false;
  143.   
  144.   // Build table HTML for use if we don't find a usable adapter
  145.   var strTable = "<table border=0>";
  146.   strTable += "<tr valign=top>";
  147.   strTable += "<td nowrap>" + gStatusLightRed + "</td>";
  148.   strTable += "<td nowrap> <b>Network Card(s):</b>  Please try one of the solutions below.<br>";
  149.  
  150.   // build list box of adapters
  151.   strTable += "<div ID='aSelect' class=networkbox>";
  152.   gAdaptTypeCount = 0;
  153.   var modType = ssGetReg("ModemType");
  154.  
  155.   for (j=0; j < arrayDesc.length; j++)
  156.   {
  157.     var adapterDesc = arrayDesc[j];
  158.     var adapterType = ssAdapterType(adapterDesc);
  159.     var adapterCheck = ssTestAdapter(j);
  160.     
  161.     // Format to uppercase for UI
  162.     if (modType.toLowerCase() == "usb")
  163.     {
  164.       modType = modType.toUpperCase();
  165.     }
  166.  
  167.     // Do we have a usable adapter of selected type (USB or ethernet)?
  168.     if (adapterCheck && adapterType == ssGetReg("ModemType"))
  169. {
  170.       workingAdapter = true;
  171.     }
  172.  
  173.     // Only show adapter if it matches modem type in registry
  174.     if (adapterType == ssGetReg("ModemType"))
  175.     {
  176.       // Write out name, status and solution for each adapter
  177.       strTable += "<div style='background-color:#eeeeee; border-style:solid; border-width:1px; border-color:#000000; padding:3,3,3,3;'> " + j + " - " + adapterDesc + ":  <b>" + gAdapterStatus.toUpperCase() + "</b>  " + gFix + "</div><br>";
  178.       gAdaptTypeCount = gAdaptTypeCount + 1;
  179.     }
  180.   }
  181.  
  182.   // If No Adapter of selected type is found...
  183.   if (gAdaptTypeCount == 0)
  184.   {
  185.     strTable += "<div style='background-color:#eeeeee; border-style:solid; border-width:1px; border-color:#000000; padding:3,3,3,3;'> No " + modType + " adapter found. <a href='modemtype.htm'>Please select a different adapter type.</a>";
  186.     //alert (modType);
  187.     if (modType == "ethernet")
  188.     {
  189.       strTable += "<br> Or, make sure your ethernet card is <a href='install.htm'>installed</a> correctly.";
  190.     }
  191.   }
  192.  
  193.   // Finish building table HTML
  194.   strTable += "</div><br></div></td>";
  195.   strTable += "</tr>";
  196.   strTable += "</table>";
  197.  
  198.   // Only show the adapters if we don't find a usable one of selected type
  199.   if (!workingAdapter || gAdaptTypeCount == 0)
  200.   {
  201.     document.write(strTable);
  202.     flagPass = false;
  203.   }
  204.   else
  205.   {
  206.     /*strTable = "<table border=1>";
  207.     strTable += "<tr valign=top>";
  208.     strTable += "<td nowrap>" + gStatusLightGreen + "</td>";
  209.     */
  210.     var myrow = document.all.checktable.insertRow();
  211.     var newRo = myrow.insertCell();
  212.     newRo.innerHTML=gStatusLightGreen;
  213.     newRo = myrow.insertCell();
  214.     newRo.innerHTML = "<b>  Network Card(s):</b>";
  215.     newRo = myrow.insertCell();
  216.        newRo.colSpan = 3;
  217.        newRo.innerHTML = "Usable " + modType + " adapter found";
  218.     
  219.     
  220.     /*
  221.     strTable += "<td nowrap> <b>Network Card(s):</b>Usable " + modType + " adapter found</td>";    
  222.     strTable += "</tr>";
  223.     strTable += "</table>";
  224.     document.write(strTable);
  225.     */
  226.   }
  227. }
  228.  
  229. //*******************************
  230. // Name:         ssDisplayBanner
  231. // Purpose:      Displays the top banner with company and product logos
  232. //*******************************
  233. function ssDisplayBanner()
  234. {
  235.   document.write('<table cellspacing="0" cellpadding="0" width="100%" border="0">');
  236.   document.write('<tr>');
  237.   document.write('<td bgcolor=' + BANNER_BGCOLOR + ' align=right><img src="' + COMPANY_LOGO + '" border=0 align=left vspace=0 hspace=0></td>');
  238.   document.write('</tr>');
  239.   document.write('</table>');
  240. }
  241.  
  242. //*******************************
  243. // Name:         ssDisplayBanner
  244. // Purpose:      Displays the top banner with company and product logos
  245. //*******************************
  246. function ssDisplayBanner2()
  247. {
  248.   document.write('<table cellspacing="0" cellpadding="0" width="100%" border="0">');
  249.   document.write('<tr>');
  250.   document.write('<td bgcolor=' + BANNER_BGCOLOR + ' align=right><img src="' + COMPANY_LOGO + '" border=0 align=left vspace=0 hspace=0></td>');
  251.   document.write('</tr>');
  252.   document.write('</table>');
  253. }
  254.  
  255. //*******************************
  256. // Name:         ssDisplayFooter
  257. // Purpose:      Display the page footer with steps on left and SupportSoft logo on right
  258. // Parameter:    Step -- The step of the current page
  259. //*******************************
  260. function ssDisplayFooter(tintStep)
  261. {
  262.   document.write('<br><br><table border=0 cellpadding=0 cellspacing=0 width=100%>');
  263.   document.write('<tr>');
  264.   if (tintStep == "finished")
  265.   {
  266.     document.write('<td class="steps">     <b>Finished!</b></td>');
  267.   }
  268.   else if (tintStep == "")
  269.   {
  270.     document.write('<td class="steps">     </td>');
  271.   }
  272.   else if (tintStep != "help")
  273.   {
  274.     document.write('<td class="steps">     </td>');
  275.    /* document.write('<td class="steps" nowrap><img src="../images/spacer.gif" border=0 width=10 height=1><img id="step1" name="step1" src="../images/sac_status_modem_off.gif">');
  276.     document.write('<img id="step2" name="step2" src="../images/sac_status_computer_check_off.gif">');
  277.     document.write('<img id="step3" name="step3" src="../images/sac_status_software_off.gif">');
  278.     document.write('<img id="step4" name="step4" src="../images/sac_status_confirm_off.gif">');
  279.     document.write('<img id="step5" name="step5" src="../images/sac_status_confirm_on.gif">');
  280.     document.write('</td>');
  281.     // highlight the current step
  282.     var curStep = tintStep.toString();
  283.     curStep = "step" + curStep;
  284.     var objSpan;
  285.     objSpan = eval("document.all." + curStep);
  286.  
  287.     var strImg = tintStep.toString();
  288.     strImg = "img" + strImg;
  289.     var strImgon = tintStep.toString();
  290.     strImgon = "imgon" + strImgon;
  291.     strImgon = eval(strImgon + ".src");
  292.  
  293.     // Set the image source to the on state
  294.     objSpan.src = strImgon;
  295.    */
  296.  
  297.   }
  298.   document.write('</tr>');
  299.   document.write('</table>');
  300.  
  301.   // Set the top value for the footer <div> based on the container height specified in ini file
  302.   var winHeight = window.external.GetIniValue("", "SETUP", "height");
  303.   var footerTop = (winHeight - 55);
  304.   document.all.footer.style.pixelTop = footerTop;
  305.   
  306. }
  307.  
  308. //*******************************
  309. // Name:         ssDisplayResultsBox
  310. // Purpose:      Displays box with blue background in header and rule down right side.
  311. //               Used for displaying diagnostic results and other lists.
  312. // Usage:        Call once before content, passing a 1 as the first parameter.
  313. //               Call again after content, passing a 2 as the first parameter.
  314. // Parameter:    Top -- Integer. 1 indicates the beginning of box; 2 indicates closing of box.
  315. //               Path -- Path to image directory. IE, ../images
  316. //*******************************
  317. function ssDisplayResultsBox(tintTop,tstrImagePath) {
  318.   if (tintTop == 1) {
  319.     document.write("<table border=0 cellspacing=0 cellpadding=0><tr>");
  320.     document.write("<td><img src='" + tstrImagePath + "/sacrs_tl_bluewire.gif'></td>");
  321.     document.write("<td background='" + tstrImagePath + "/sacrs_t_bluewire.gif'><img src='images/spacer.gif' width=1 height=19></td>");
  322.     document.write("<td><img src='" + tstrImagePath + "/sacrs_tr_bluewire.gif'></td></tr><tr>");
  323.     document.write("<td background='" + tstrImagePath + "/sacrs_l_bluewire.gif'><img src='" + tstrImagePath + "/spacer.gif' width=19 height=1></td><td>");
  324.   }
  325.   else {
  326.     document.write("</td><td background='" + tstrImagePath + "/sacrs_r_bluewire.gif'><img src='" + tstrImagePath + "/spacer.gif' width=19 height=1></td></tr><tr>");
  327.     document.write("<td><img src='" + tstrImagePath + "/sacrs_bl_bluewire.gif'></td>");
  328.     document.write("<td background='" + tstrImagePath + "/sacrs_b_bluewire.gif'><img src='" + tstrImagePath + "/spacer.gif' width=1 height=19></td>");
  329.     document.write("<td><img src='" + tstrImagePath + "/sacrs_br_bluewire.gif'></td></tr></table>");
  330.   }
  331. }
  332. //*******************************
  333. // Name:         ssDisplayHeader
  334. // Purpose:      Display a given header image and step number
  335. // Parameter:    Header -- Text to be displayed as header if page is not in arraySteps
  336. //               Step -- Integer representing desired step (unrelated to arraySteps) of current page
  337. //*******************************
  338. function ssDisplayHeader(tstrHeader,tintStep)
  339. {
  340.   document.write('<table cellpadding="0" cellspacing="0" width="750" border="0">');
  341.   document.write('<tr>');
  342.  
  343.   // If the page is in arraySteps, grab the title from the array
  344.   if (ssGetPageIndex() != -1)
  345.   {
  346.     document.write('<td align=left class=pageheader>' + arraySteps[ssGetPageIndex()].title + '<br></td>');
  347.   }
  348.   // If page is not in the steps array, use tstrImg as the title
  349.   else
  350.   {
  351.     document.write('<td align=left class=pageheader>' + tstrHeader + '<br></td>');
  352.   }
  353.  
  354.   //document.write('<td align=right><a href="javascript:ssExitApp();" onMouseover="exiticon.src=\'../images/sacic_exit_small_over.gif\'" onMouseout="exiticon.src=\'../images/sacic_exit_small.gif\'"><img src="../images/sacic_exit_small.gif" border="0" name="exiticon" hspace="7"></a><span id="helplink" style="visibility:visible;"><a href="javascript:ssDisplayHelp();" onMouseover="helpicon.src=\'../images/sacic_help_small_over.gif\'" onMouseout="helpicon.src=\'../images/sacic_help_small.gif\'"><img src="../images/sacic_help_small.gif" name="helpicon" border=0></a></span></td>');
  355.   document.write('<td align=right><span id="helplink" style="visibility:visible;"><a href="javascript:ssDisplayHelp();" onMouseover="helpicon.src=\'../images/sacic_help_small_over.gif\'" onMouseout="helpicon.src=\'../images/sacic_help_small.gif\'"><img src="../images/sacic_help_small.gif" name="helpicon" border=0></a></span></td>');
  356.   document.write('</tr>');
  357.   document.write('</table>');
  358. }
  359.  
  360.  
  361. function ssDisplayHeader2(tstrHeader , tintStep )
  362. {
  363.   document.write('<img src="../images/professor_guy_tools.gif" border=0 align=left>');
  364.   document.write('<table cellpadding="1" cellspacing="0" width="" border=0>');
  365.   document.write('<tr>');
  366.  
  367.     document.write('<td align=left class=pageheader>' + tstrHeader + '</td>');
  368.  
  369.  
  370. //  document.write('<td align=right><a href="javascript:ssDisplayHelp();" onMouseover="helpicon.src=\'../images/sacic_help_small_over.gif\'" onMouseout="helpicon.src=\'../images/sacic_help_small.gif\'"><img src="../images/sacic_help_small.gif" name="helpicon" border=0></a></td>');
  371.   document.write('</tr>');
  372.   document.write('</table>');
  373. }
  374.  
  375.  
  376.  
  377.  
  378. //*******************************
  379. // Name:         ssDisplayButtons
  380. // Purpose:      Display appropriate buttons and links at bottom of page
  381. // Parameter:    URL -- The path that the "Continue" button will go to
  382. //*******************************
  383. function ssDisplayButtons(contHref){
  384.   // if ( (ssGetPageIndex() != arraySteps.length-1) && ssGetNameIndex('reboot.htm') != ssGetPageIndex()){
  385.    //if (ssGetPageIndex() != ssGetNameIndex('thankyou.htm') ){
  386.       document.write('<div id="buttons">');
  387.       document.write('<table border=0 width=700 cellspacing=0 cellpadding=0 align=center>');
  388.       document.write('<tr>');
  389.       document.write('<td>    ');
  390.  
  391.       // all pages but begin, swload and ver_static
  392.       if (ssGetCurrentPage() != 'begin.htm' && ssGetCurrentPage() != 'swload.htm' && ssGetCurrentPage() != 'usb_disconnect.htm' && ssGetCurrentPage() != 'plugnic.htm' &&  ssGetCurrentPage() != 'license.htm'){
  393.          document.write('<a href="javascript:ssGoPreviousStep();"><img name="back" src="../images/sacbn_back.gif" onMouseover="back.src=\'../images/sacbn_back_over.gif\';" onMouseout="back.src=\'../images/sacbn_back.gif\';" border=0></a>');
  394.          document.write('<image src="../images/spacer.gif" width=50 height=1>');
  395.          }
  396.       // special cases for other pages
  397.       if (ssGetNameIndex('license.htm') == ssGetPageIndex()){
  398.          document.write('<a href="javascript:ssSetReg(\'OfflineLastPage\',\'begin.htm\');location.href=\'begin.htm\';"><img name="back" src="../images/sacbn_back.gif" onMouseover="back.src=\'../images/sacbn_back_over.gif\';" onMouseout="back.src=\'../images/sacbn_back.gif\';" border=0></a>');
  399.          document.write('<image src="../images/spacer.gif" width=50 height=1>');
  400.          document.write('<a href="javascript:Continue();"><img src="../images/sacbn_accept_over.gif" border="0" name="agree" onMouseover="agree.src=\'../images/sacbn_accept_over.gif\';" onMouseout="if(m_bContinue){agree.src=\'../images/sacbn_accept.gif\'};" tabindex=0></a>');
  401.          document.write('<image src="../images/spacer.gif" width=50 height=1>');
  402.          document.write('<a href="fail_lic.htm"><img src="../images/sacbn_do_not_accept.gif" border="0" name="disagree" onMouseover="disagree.src=\'../images/sacbn_do_not_accept_over.gif\';" onMouseout="disagree.src=\'../images/sacbn_do_not_accept.gif\';"></a>');
  403.          //document.write('<a href="doNotAccpet();"><img src="../images/sacbn_do_not_accept.gif" border="0" name="disagree" onMouseover="disagree.src=\'../images/sacbn_do_not_accept_over.gif\';" onMouseout="disagree.src=\'../images/sacbn_do_not_accept.gif\';"></a>');
  404.          document.write('<image src="../images/spacer.gif" width=50 height=1>');
  405.          document.write('<a href="javascript:window.print();"><img src="../images/sacbn_print.gif" border="0" name="print" onMouseover="print.src=\'../images/sacbn_print_over.gif\';" onMouseout="print.src=\'../images/sacbn_print.gif\';"></a>');
  406.          }else if (ssGetCurrentPage() == 'swload.htm'){
  407.             // Don't display buttons
  408.             document.write('<img src="../images/spacer.gif" border="0" height="27" width="1"');
  409.             }else if(ssGetCurrentPage() == 'usb_disconnect.htm'){
  410.                 document.write('<a href="javascript:location.href=\'modemtype.htm\';"><img name="back" src="../images/sacbn_back.gif" onMouseover="back.src=\'../images/sacbn_back_over.gif\';" onMouseout="back.src=\'../images/sacbn_back.gif\';" border=0></a>');
  411.                document.write('<image src="../images/spacer.gif" width=50 height=1>');
  412.                document.write('<a href="quit.htm"><img name="contlater" src="../images/sacbn_continue_later.gif" onMouseover="contlater.src=\'../images/sacbn_continue_later_over.gif\';" onMouseout="contlater.src=\'../images/sacbn_continue_later.gif\';" border=0></a>    ');
  413.                document.write('</td>');
  414.                document.write('<td align=right>');
  415.                document.write('<a href=\"javascript:' + contHref + '\" onMouseover="this.style.cursor=\'hand\'; cont.src=\'../images/sacbn_continue_over.gif\';" onMouseout="cont.src=\'../images/sacbn_continue.gif\';"><img name="cont" src="../images/sacbn_continue.gif" border="0" tabindex=0></a>');
  416.             }else if(ssGetCurrentPage() == 'plugnic.htm'){
  417.                document.write('<a href="javascript:location.href=\'modemtype.htm\';"><img name="back" src="../images/sacbn_back.gif" onMouseover="back.src=\'../images/sacbn_back_over.gif\';" onMouseout="back.src=\'../images/sacbn_back.gif\';" border=0></a>');
  418.                document.write('<image src="../images/spacer.gif" width=50 height=1>');
  419.                document.write('<a href="quit.htm"><img name="contlater" src="../images/sacbn_continue_later.gif" onMouseover="contlater.src=\'../images/sacbn_continue_later_over.gif\';" onMouseout="contlater.src=\'../images/sacbn_continue_later.gif\';" border=0></a>    ');
  420.                document.write('</td>');
  421.                document.write('<td align=right>');
  422.                document.write('<a href=\"javascript:' + contHref + '\" onMouseover="this.style.cursor=\'hand\'; cont.src=\'../images/sacbn_continue_over.gif\';" onMouseout="cont.src=\'../images/sacbn_continue.gif\';"><img name="cont" src="../images/sacbn_continue.gif" border="0" tabindex=0></a>');
  423.                }else{
  424.                document.write('<a href="quit.htm"><img name="contlater" src="../images/sacbn_continue_later.gif" onMouseover="contlater.src=\'../images/sacbn_continue_later_over.gif\';" onMouseout="contlater.src=\'../images/sacbn_continue_later.gif\';" border=0></a>    ');
  425.                document.write('</td>');
  426.                document.write('<td align=right>');
  427.                document.write('<a href=\"javascript:' + contHref + '\" onMouseover="this.style.cursor=\'hand\'; cont.src=\'../images/sacbn_continue_over.gif\';" onMouseout="cont.src=\'../images/sacbn_continue.gif\';"><img name="cont" src="../images/sacbn_continue.gif" border="0" tabindex=0></a>');
  428.                }
  429.       // put focus on continue button except on form pages
  430.       if (ssGetCurrentPage() != "license.htm" && ssGetCurrentPage() != "adapters.htm"  && ssGetCurrentPage() != "devices.htm"  && ssGetCurrentPage() != "register.htm" && ssGetCurrentPage() != "username.htm"){
  431.          document.all.cont.focus();
  432.          }
  433.       document.write('</td>');
  434.       document.write('</tr>');
  435.       document.write('</table>');
  436.       document.write('</div>');
  437.  //     }
  438. }
  439.  
  440. //*******************************
  441. // Name:         ssLayerMouseover
  442. // Purpose:      Displays mouseover glossary with coordinates relative to mouse position
  443. //               Used in conjunction with ssLayerMouseout
  444. // Parameter:    Event -- Value must be event
  445. //               Message -- String message to be displayed on mouseover. Should use constants, like
  446. //                          GLOSSARY_CACHE above
  447. //               <DIV> -- String name of <DIV> that will display message.
  448. //               y -- offset of y mouse coordinate
  449. //               x -- offset of x mouse coordinate
  450. //*******************************
  451. function ssLayerMouseover(event,strMsg,div,y,x)
  452. {
  453.   if (document.all[div] == undefined)
  454.   {
  455.     var objDiv = document.createElement("DIV");
  456.     document.body.appendChild(objDiv);
  457.   }
  458.   else
  459.   {
  460.     var objDiv = document.all[div];
  461.   }
  462.   objDiv.id = div;
  463.   objDiv.name = div;
  464.   objDiv.style.position = "absolute";
  465.   objDiv.style.visibility = "hidden";
  466.   objDiv.style.backgroundColor = "#ffffcc";
  467.   objDiv.style.fontSize = "9pt";
  468.   objDiv.style.padding = "4px";
  469.   objDiv.style.borderStyle = "solid";
  470.   objDiv.style.borderWidth = "1pt";
  471.   objDiv.style.borderColor = "#000000";
  472.   
  473.   if (objDiv.style.visibility.value != "visible")
  474.   {
  475.     objDiv.style.pixelTop = window.event.y + y;
  476.     objDiv.style.pixelLeft = window.event.x + x;
  477.   }
  478.   objDiv.style.visibility = "visible";
  479.   objDiv.innerHTML = strMsg;
  480. }
  481.  
  482. //*******************************
  483. // Name:         ssLayerMouseout
  484. // Purpose:      Hide mouseover glossary that is displayed with ssLayerMouseover()
  485. //               Used in conjunction with ssLayerMouseover
  486. //               <DIV> -- String name of <DIV> to be hidden
  487. // Return:       Integer
  488. //*******************************
  489. function ssLayerMouseout(div)
  490. {
  491.   var objDiv = document.all[div];
  492.   objDiv.style.visibility = "hidden";
  493.   objDiv.innerHTML = "";
  494. }
  495.  
  496. //*******************************
  497. // Name:         ssDisplaySupportedOS
  498. // Purpose:      Loop through and write out supported operating systems as
  499. //               specified in sdcnetcheck.js (arraySupportedOS)
  500. //*******************************
  501. function ssDisplaySupportedOS()
  502. {
  503.   for (i=0; i <= arraySupportedOS.length-1; i++)
  504.   {
  505.     document.write(arraySupportedOS[i].fullname + "<br>");
  506.   }
  507. }
  508.  
  509. // Help functions
  510. //*******************************
  511. // Name:         ssWriteHelpScriptlet
  512. // Purpose:      Write the object tag which calls the scriptlet (help.htm) that contains the help window,
  513. //               in hidden mode, using layers and linking to helppage that
  514. //               corresponds to the current page. ssDisplayHelp() will display help window.
  515. //               This function must be called on HTML page for help to work.
  516. //*******************************
  517. function ssWriteHelpScriptlet()
  518. {
  519.   document.write('<OBJECT DATA="help.htm" ID="helpBox" STYLE="position:absolute; top:30px; left:250px; height:395px; width:540px; z-index:5;  padding:0px; border:0; visibility: hidden" TYPE="text/x-scriptlet"></OBJECT>');
  520.  
  521. }
  522.  
  523. //*******************************
  524. // Name:         ssDisplayHelp
  525. // Purpose:      Display help window for the current page
  526. //*******************************
  527. function ssDisplayHelp()
  528. {
  529.   document.all.helpBox.style.visibility = 'visible';
  530. }
  531.   
  532. //*******************************
  533. // Name:         ssCloseHelp
  534. // Purpose:      Close help window
  535. //*******************************
  536. function ssCloseHelp()
  537. {
  538.   document.all.helpBox.style.visibility = 'hidden';
  539. }
  540.  
  541. //*******************************
  542. // Name:         ssDisplayAdapters
  543. // Purpose:      Display adapters that were retrieved from ssFinalAdapterList() (sdcnetcheck.js)
  544. //*******************************
  545. function ssDisplayAdapters()
  546. {
  547.   document.write("<div name='list' id='list' style='display:block;'>");
  548.   document.write("<table border='0' noshade cellpadding='2' cellspacing='0' width=720><tr valign=top>")
  549.   document.write("<td nowrap><b>Select Adapter:</b><br>" + strNic + "<br><span id=nicFix>" + gNicFix + "</span></td></tr><tr> ");
  550.   document.write("</table>");
  551.   document.write("</div>");
  552. }
  553.