home *** CD-ROM | disk | FTP | other *** search
-
- <html>
-
- <head>
- <meta http-equiv="Content-Type"
- content="text/html; charset=iso-8859-1">
-
- <HTML>
- <HEAD>
-
- <TITLE>APC CD</TITLE>
-
- <script language="JavaScript">
- <!--
-
- /*----------------------------------------------------------------*
- | |
- | This script was written by Travis Simon for apcmag.com. |
- | You can see this script, plus many more, in his JavaScript |
- | column, conveniently located at http://apcmag.com/workshop. |
- | |
- | Feel free to use any or all of this script, but please |
- | keep this header in tact for others who may wish to learn |
- | about JavaScript. |
- | |
- *----------------------------------------------------------------*/
-
- // -- README -- \\
- // Unless instructed otherwise, it's probably not a great idea
- // to change this script.
-
- var adIndex = 0;
-
- // This line sets the default string value present in the bottom of the browser.
- // It may not appear in all browsers, but unless you include it, some will leave
- // the mouseover messages while the mouse is no longer over.
-
- window.defaultstatus = "apcmag.cd -- the best around.";
-
- var timerID;
-
- function ad(width, height) {
- this.width = width;
- this.height = height;
- this.pic = '';
- this.location = '';
- this.message = '';
- this.delay = 10;
- }
-
- function writeAd() {
- with(window.Banner.document) {
- clear();
- open();
- writeln('<html><head><base target="Page"></head>');
- writeln('<body bgColor="#FFFFFF" ');
- writeln('onLoad="setTimeout(\'parent.writeAd()\', ' + ads[adIndex].delay * 1000 + ');">');
- write('<center><a href=' + ads[adIndex].location + ' ');
- writeln('onMouseOver="self.status=\'' + ads[adIndex].message + '\'\; return true\;">');
- write('<img src="' + ads[adIndex].pic + '" width=' + ads[adIndex].width);
- writeln(' height=' + ads[adIndex].height + ' border=0></a></center>');
- write('</body></html>');
- bgColor="#FFFFFF";
- close();
- }
- adIndex++;
- if(adIndex == ads.length)
- adIndex = 0;
- }
-
-
- /*****************************************************************
-
- This is where you have to define the ad objects.
- The phrases in parenthasis are not to be replaced by the respective values.
- The parenthasis are not to be included, either.
- The form is something like this --
-
- var (adname) = new ad((ad width), (ad height));
- (adname).pic = "(relative url to ad picture)";
- (adname).message = "(add message for Mouse over and loading text)";
- (adname).delay = "(time in seconds for ad to display)";
-
- ** IMPORTANT!! **
- Any time in the message field that you want to use an apostrophe,
- you must preface it by TWO BACKSLASHES. For example, you could say
-
- bob.message = "Eat at Bob\\'s!";
-
- If you do not do this, the script will come crumbling down around you.
-
- **********************************************************/
-
-
- // Insert ads here
-
-
- var apcstart = new ad("468", "60");
- apcstart.pic = "../ads/apc/apcstad1.gif";
- apcstart.location = "../ads/apc/startad.htm";
- apcstart.message = "apcmag.Start - the best place to start on the Web";
- apcstart.delay = 30;
-
- var apcsub = new ad("468", "60");
- apcsub.pic = "../ads/apc/apsbad.gif";
- apcsub.location = "../ads/apc/subsad.htm";
- apcsub.message = "Subscribe to APC - save time and money!";
- apcsub.delay = 30;
-
- var wpock = new ad("468", "60");
- wpock.pic = "../ads/apc/w98pb_a.gif";
- wpock.location = "../ads/cdwin983.htm";
- wpock.message = "Windows 98 Pocketbook";
- wpock.delay = 30;
-
- var lpock = new ad("468", "60");
- lpock.pic = "../ads/apc/banlinux.gif";
- lpock.location = "../ads/cdlinpb.htm";
- lpock.message = "Linux Pocketbook";
- lpock.delay = 30;
-
- var cdweek = new ad("468", "60");
- cdweek.pic = "../ads/apc/cdw_bar1.gif";
- cdweek.location = "../ads/subs.htm";
- cdweek.message = "CD Week";
- cdweek.delay = 30;
-
- var gateway = new ad("468", "60");
- gateway.pic = "../ads/gateway/home.gif";
- gateway.location = "../ads/gateway/prodline.htm";
- gateway.message = "Gateway";
- gateway.delay = 30;
-
- var ozemail = new ad("468", "60");
- ozemail.pic = "../isp/ozemail/100_free.gif";
- ozemail.location = "../isp/ozemail/index.htm";
- ozemail.message = "OzEmail";
- ozemail.delay = 30;
-
- var aol = new ad("468", "60");
- aol.pic = "../isp/aol/aol_ba.gif";
- aol.location = "../isp/aol/index.htm";
- aol.message = "AOL";
- aol.delay = 30;
-
- var iprimus = new ad("468", "60");
- iprimus.pic = "../isp/primus/ipban.gif";
- iprimus.location = "../isp/primus/index.htm";
- iprimus.message = "iPRIMUS";
- iprimus.delay = 30;
-
- var telstra1 = new ad("468", "60");
- telstra1.pic = "../isp/bpbanner.gif";
- telstra1.location = "../isp/bigpond/bigpond.htm";
- telstra1.message = "Telstra Bigpond";
- telstra1.delay = 30;
-
- var tpgi = new ad("468", "60");
- tpgi.pic = "../isp/tpgi/tpgban.gif";
- tpgi.location = "../isp/tpgi/contents.htm";
- tpgi.message = "TPGI";
- tpgi.delay = 30;
-
- var planet = new ad("468", "60");
- planet.pic = "../isp/planet/planetad.gif";
- planet.location = "../isp/planet/index.htm";
- planet.message = "Planet Internet";
- planet.delay = 30;
-
- var dbell = new ad("468", "60");
- dbell.pic = "../isp/dbell/dbnwad.gif";
- dbell.location = "../isp/dbell/index.htm";
- dbell.message = "Dynamic Bell";
- dbell.delay = 30;
-
- var onenet = new ad("468", "60");
- onenet.pic = "../isp/onenet/onenet.gif";
- onenet.location = "../isp/onenet/index.htm";
- onenet.message = "One.Net";
- onenet.delay = 30;
-
- // All ad definitions should be above this point
-
- var ads = new Array();
-
- /*******************************************************
-
- This is where you define the order that the ads will appear in.
- The general form is something like this:
-
- ads[(next number)] = (ad name);
-
- ** NOTE! The first ad is ALWAYS number 0. If you forget that,
- no more script.
-
- ********************************************************/
-
-
-
- ads[0] = ozemail;
- ads[1] = aol;
- ads[2] = iprimus;
- ads[3] = onenet;
- ads[4] = telstra1;
- ads[5] = tpgi;
-
- // You should not need to change anything below these lines
-
- // End Script -->
- </script>
- </HEAD>
-
- <FRAMESET COLS="100%" ROWS="31,*" frameborder="0" framespacing="0" border="0">
- <FRAME NAME="Top" SRC="front/frtop.htm" SCROLLING="NO" marginwidth="0" marginheight="0">
- <FRAMESET COLS="124, *">
- <FRAME NAME="Directory" SRC="front/frdir.htm" SCROLLING="NO">
- <FRAMESET ROWS="*,67">
- <FRAME NAME="Page" SRC="!" SCROLLING="AUTO">
- <FRAME NAME="Banner" SRC="front/frban.htm" SCROLLING="NO" frameborder="1" marginwidth="0" marginheight="0">
- </FRAMESET>
- </FRAMESET>
- </FRAMESET>
- </HTML>