home *** CD-ROM | disk | FTP | other *** search
- function displayRandom468x60Banner()
- {
- var imageIndex = 0;
- imageList = new Array();
-
- imageList[imageIndex++] = new String("chip|orderform.htm|Your Navigator through Digital Technology");
- imageList[imageIndex++] = new String("system_tools_cd|orderform_plus.htm|CHIP Plus System Tools - Order today!");
- imageList[imageIndex++] = new String("freewarecd|orderform_plus.htm|CHIP Plus Freeware Collection - Order today!");
- imageList[imageIndex++] = new String("kidsware|orderform_plus.htm|CHIP Plus Kidsware - Order today!");
- imageList[imageIndex++] = new String("ffwd|http://www.chip-india.com/fastforward|Zip ahead with Fast Forward - Order Today!");
- imageList[imageIndex++] = new String("cgw|orderform_cgw.htm|100% Gaming Masti .. Guaranteed!");
- imageList[imageIndex++] = new String("cas|orderform_cas.htm|Computer Arts Special: The Digital Design Bible");
-
- var r = getRandomNum(0,imageList.length);
-
- var imgsrc = imageList[r].slice(0,imageList[r].indexOf("|"));
- var ahref = imageList[r].slice(imageList[r].indexOf("|")+1,imageList[r].lastIndexOf("|"));
- var alttext = imageList[r].slice(imageList[r].lastIndexOf("|")+1);
-
- document.write("<A HREF='orderform/" + ahref + "' target='_blank'>");
- document.write("<IMG SRC='images/banner_" + imgsrc + ".gif' height=60 border=0 width=468 ALT='" + alttext + "'>");
- document.write("</A>");
- }
-
- function getRandomNum(lbound, ubound)
- {
- return (Math.floor(Math.random() * (ubound - lbound)) + lbound);
- }
-