home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 1999 November / APC411-1.ISO / isys.frm < prev    next >
Encoding:
Text File  |  1999-09-30  |  4.9 KB  |  160 lines

  1.  
  2. <html>
  3.  
  4. <head>
  5. <meta http-equiv="Content-Type"
  6. content="text/html; charset=iso-8859-1">
  7.  
  8. <HTML>
  9. <HEAD>
  10.  
  11. <TITLE>APC CD</TITLE>
  12.  
  13. <script language="JavaScript">
  14. <!--
  15.  
  16. /*----------------------------------------------------------------*
  17.  |                                                                |
  18.  | This script was written by Travis Simon for apcmag.com.        |
  19.  | You can see this script, plus many more, in his JavaScript     |
  20.  | column, conveniently located at http://apcmag.com/workshop.    |
  21.  |                                                                |
  22.  | Feel free to use any or all of this script, but please         |
  23.  | keep this header in tact for others who may wish to learn      |
  24.  | about JavaScript.                                              |
  25.  |                                                                |
  26.  *----------------------------------------------------------------*/ 
  27.  
  28. // -- README -- \\
  29. // Unless instructed otherwise, it's probably not a great idea 
  30. // to change this script.
  31.  
  32. var adIndex = 0;
  33.  
  34. // This line sets the default string value present in the bottom of the browser.
  35. // It may not appear in all browsers, but unless you include it, some will leave
  36. // the mouseover messages while the mouse is no longer over.
  37.  
  38. window.defaultstatus = "apcmag.cd -- the best around.";
  39.  
  40. var timerID;
  41.  
  42. function ad(width, height) {
  43.    this.width = width;
  44.    this.height = height;
  45.    this.pic = '';
  46.    this.location = '';
  47.    this.message = '';
  48.    this.delay = 10;
  49. }
  50.  
  51. function writeAd() {
  52.    with(window.Banner.document) {
  53.       clear();
  54.       open();
  55.       writeln('<html><head><base target="Page"></head>');
  56.       writeln('<body bgColor="#FFFFFF" ');
  57.       writeln('onLoad="setTimeout(\'parent.writeAd()\', ' + ads[adIndex].delay * 1000 + ');">');
  58.       write('<center><a href=' + ads[adIndex].location + ' ');
  59.       writeln('onMouseOver="self.status=\'' + ads[adIndex].message + '\'\; return true\;">');
  60.       write('<img src="' + ads[adIndex].pic + '" width=' + ads[adIndex].width);
  61.       writeln(' height=' + ads[adIndex].height + ' border=0></a></center>');   
  62.       write('</body></html>');
  63.       bgColor="#FFFFFF";
  64.       close();
  65.    }
  66.    adIndex++;
  67.    if(adIndex == ads.length) 
  68.       adIndex = 0;
  69. }
  70.  
  71.  
  72. /*****************************************************************
  73.  
  74. This is where you have to define the ad objects.
  75. The phrases in parenthasis are not to be replaced by the respective values.
  76. The parenthasis are not to be included, either.
  77. The form is something like this --
  78.  
  79. var (adname) = new ad((ad width), (ad height));
  80. (adname).pic = "(relative url to ad picture)";
  81. (adname).message = "(add message for Mouse over and loading text)";
  82. (adname).delay = "(time in seconds for ad to display)";
  83.  
  84. ** IMPORTANT!! **
  85. Any time in the message field that you want to use an apostrophe,
  86. you must preface it by TWO BACKSLASHES. For example, you could say
  87.  
  88. bob.message = "Eat at Bob\\'s!";
  89.  
  90. If you do not do this, the script will come crumbling down around you.
  91.  
  92. **********************************************************/
  93.  
  94.  
  95. // Insert ads here
  96.  
  97.  
  98.  
  99.  
  100. var gateway = new ad("468", "60");
  101. gateway.pic = "../ads/gateway/enthus.gif";
  102. gateway.location = "../ads/gateway/prodline.htm";
  103. gateway.message = "Gateway";
  104. gateway.delay = 30;
  105.  
  106. var dingo = new ad("468", "60");
  107. dingo.pic = "../ads/dingo/dingo.gif";
  108. dingo.location = "../ads/dingo/dingo.htm";
  109. dingo.message = "dingo blue - the phone company that's not for everyone";
  110. dingo.delay = 30;
  111.  
  112. var olympic = new ad("468", "60");
  113. olympic.pic = "../ads/olympic/banner.jpg";
  114. olympic.location = "../ads/olympic/olympic.htm";
  115. olympic.message = "Olympic System Configurator";
  116. olympic.delay = 30;
  117.  
  118. var sapphire = new ad("468", "60");
  119. sapphire.pic = "../sapphire/files/banner.gif";
  120. sapphire.location = "../sapphire/files/sapphire.htm";
  121. sapphire.message = "Sapphire accounting software";
  122. sapphire.delay = 30;
  123.  
  124.  
  125. // All ad definitions should be above this point
  126.  
  127. var ads = new Array();
  128.  
  129. /*******************************************************
  130.  
  131. This is where you define the order that the ads will appear in.
  132. The general form is something like this:
  133.  
  134. ads[(next number)] = (ad name);
  135.  
  136. ** NOTE! The first ad is ALWAYS number 0. If you forget that,
  137. no more script.
  138.  
  139. ********************************************************/
  140.  
  141.  
  142. ads[0] = gateway;
  143.  
  144. // You should not need to change anything below these lines
  145.  
  146. // End Script -->
  147. </script>
  148. </HEAD>
  149.  
  150. <FRAMESET COLS="100%" ROWS="31,*" frameborder="0" framespacing="0" border="0">
  151. <FRAME NAME="Top" SRC="front/frtop.htm" SCROLLING="NO" marginwidth="0" marginheight="0">
  152. <FRAMESET COLS="124, *">
  153. <FRAME NAME="Directory" SRC="front/frdir.htm" SCROLLING="NO">
  154. <FRAMESET ROWS="*,67">
  155. <FRAME NAME="Page" SRC="!" SCROLLING="AUTO">
  156. <FRAME NAME="Banner" SRC="front/frban.htm" SCROLLING="NO" frameborder="1" marginwidth="0" marginheight="0">
  157. </FRAMESET>
  158. </FRAMESET>
  159. </FRAMESET>
  160. </HTML>