home *** CD-ROM | disk | FTP | other *** search
/ Transgender Forum 1 - 4 / transforum.iso / pc / data / ads / randomad.js < prev    next >
Encoding:
Text File  |  1999-03-12  |  2.3 KB  |  40 lines

  1. function makeArray()
  2. {
  3.     this.length = makeArray.arguments.length
  4.     for (var i = 0; i < this.length; i++)
  5.     this[i + 1] = makeArray.arguments[i]
  6. }
  7.  
  8. function randNum( num )
  9. {
  10.     var now = new Date();
  11.     var rand = Math.round( num * Math.cos( now.getTime() ) );
  12.     if (rand < 0) rand = - rand;
  13.     if (rand == 0) rand++;
  14.     return rand;
  15. }
  16.  
  17. var adsArray = new makeArray(
  18. "<a href='http://www.tgfmall.com/vndr.html'><img src='../ads/mallani2.gif' width=278 height=65 border=0></a>",
  19. "<a href='../cdrom.html'><img src='../ads/cdromwh.jpg' width=381 height=130 border=0></a>",
  20. "<a href='http://www.clcrv.com/'><img src='../ads/clcban.gif' width=432 height=101 border=0></a>",
  21. "<a href='http://www.cdspub.com/'><img src='../ads/cdsban.gif' width=460 height=70 border=0></a>",
  22. "<a href='http://www.bvpb.com'><img src='../ads/bvpban.gif' width=432 height=101 border=0></a>",
  23. "<a href='http://www.tgfmall.com/glam/'><img src='../ads/gbban2.gif' width=465 height=81 border=0></a>",
  24. "<a href='http://www.melpro.com'><img src='../ads/mldyban.gif' width=432 height=101 border=0></a>",
  25. "<a href='http://www.lydiastv.com/'><img src='../ads/ltfban.gif' width=432 height=101 border=0></a>",
  26. "<a href='http://www.tgfmall.com/phg/'><img src='../ads/phgban.gif' width=432 height=101 border=0></a>",
  27. "<a href='http://www.magsinc.com/'><img src='../ads/magsban.gif' width=432 height=108 border=0></a>",
  28. "<a href='http://www.tgfmall.com/jtf/'><img src='../ads/jtfban2.jpg' width=247 height=77 border=0></a>",
  29. "<a href='http://www.lmgnyc.com/index.html'><img src='../ads/lmgban.gif' width=386 height=108 border=0></a>",
  30. "<a href='http://www.lolainc.com/index.html'><img src='../ads/lolaban.gif' width=432 height=101 border=0></a>",
  31. "<a href='http://www.quikshave.com'><img src='../ads/qwik.gif' width=465 height=62 border=0></a>",
  32. "<a href='http://www.tgfmall.com/bridges/'><img src='../ads/bridgban.gif'></a>",
  33. "<a href='http://www.studiosf.com'><img src='../ads/studio.jpg' width=400 height=112 border=0></a>",
  34. "<a href='http://www.ren.org/rnv.html'><img src='../ads/renbnnr.jpg' width=400 height=112 border=0></a>",
  35. "<a href='http://www.tgfmall.com/castle/index.html'><img src='../ads/castlban.gif' width=432 height=101 border=0></a>")
  36.  
  37. document.write( "<center>" )
  38. document.write( adsArray[ randNum( adsArray.length ) ] )
  39. document.write( "</center>" )
  40.