home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Internet 2001 November / MICD2001_11_NR1.iso / Www / 4programmers / wymiana_b.js < prev   
Text File  |  2001-09-26  |  941b  |  26 lines

  1. image = new Array(6);
  2. link = new Array(6);
  3.  
  4. image[0] = 'http://www.republika.pl/wrobetzki/grafika/bannery/banner[3].gif'
  5. image[1] = 'http://www.programisty.phg.pl/banner.gif'
  6. image[2] = 'http://z-h-r.fm.interia.pl/banner.gif'
  7. image[3] = 'http://www.wmms.hg.pl/images/baner.gif'
  8. image[4] = 'http://neo.free.komrel.net/banner.gif'
  9. image[5] = 'http://strefa.szkola.net/lukaszsliwa/baner.gif'
  10. image[6] = 'http://www.bronowski.pl/~vbzone/grafika/banner.gif'
  11.  
  12.  
  13. link[0] = 'http://www.firearms.prv.pl'
  14. link[1] = 'http://www.programisty.phg.pl'
  15. link[2] = 'http://z-h-r.fm.interia.pl'
  16. link[3] = 'http://www.wmms.hg.pl'
  17. link[4] = 'http://neohp.of.pl'
  18. link[5] = 'http://www.programming.of.pl'
  19. link[6] = 'http://www.vbzone.prv.pl'
  20.  
  21. index = Math.floor(Math.random() * image.length);
  22. document.write("<DL>\n");
  23. document.write("<A HREF="+link[index]+">");
  24. document.write("<IMG SRC="+image[index]+"></A>");
  25. document.write("</DL>\n");
  26.