ring.js 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. function Add(href) {
  2. WebRing[++NumInWebRing] = new WebRingObject(href);
  3. if (location.href.indexOf(href) > -1)
  4. WhereInRing = NumInWebRing;
  5. }
  6. function WebRingObject(href) {
  7. this.href = href;
  8. }
  9. var WhereInRing = 0, NumInWebRing = 0, WebRing = new Array();
  10. Add("https://ourspace.neocities.org");
  11. Add("https://laika.tiny-universes.net/");
  12. Add("https://melonking.net/");
  13. Add("https://my-own-universe-in-internet.neocities.org/");
  14. Add("https://websitering.neocities.org/ring.htm");
  15. Add("https://likehome.neocities.org");
  16. Add("https://rocketmix.neocities.org/");
  17. Add("https://usernametaken.neocities.org/main/");
  18. // Add("https://flowerfuck.neocities.org/");
  19. Add("https://floppyjay.neocities.org/");
  20. Add("https://jowieschulner.neocities.org/");
  21. // Add("https://jakeonline.neocities.org/");
  22. Add("https://mistysworld.neocities.org/");
  23. // Add("https://wizardcat.neocities.org/");
  24. Add("https://lilaclynx.neocities.org/");
  25. // Add("https://alcleaner.neocities.org/");
  26. Add("https://codeinfig.neocities.org/");
  27. Add("https://bootleg64.neocities.org/");
  28. Add("https://caitlinrosemoore.neocities.org/pie.html");
  29. // Add("https://1080p-lemonade.neocities.org/");
  30. Add("https://moonview.neocities.org/");
  31. Add("https://connors-world.neocities.org/");
  32. Add("https://arcadevirus.neocities.org/");
  33. Add("https://aether-fountains.neocities.org/");
  34. Add("https://potassiummcr2.neocities.org/");
  35. Add("https://tsu.neocities.org/");
  36. Add("https://upallnight.neocities.org/");
  37. // Add("https://eira.neocities.org/");
  38. // Add("https://k1n2a3o4i5n6r-v2.neocities.org/Rings/cover.html");
  39. Add("https://kiseop.neocities.org/");
  40. Add("https://rickyrick.neocities.org/");
  41. // Add("https://gwtagacw.neocities.org/");
  42. Add("https://mxtw.neocities.org/");
  43. Add("https://stationsquare.neocities.org/");
  44. Add("https://goodmode.neocities.org/");
  45. Add("https://lykakspars.neocities.org/");
  46. // Add("https://rileyjamesbell.neocities.org/");
  47. Add("https://exosilver.neocities.org/");
  48. Add("https://andrewjonkman.neocities.org/");
  49. if (WhereInRing == 0) WhereInRing = 1;
  50. if (WhereInRing == 1)
  51. PrevInRing = NumInWebRing;
  52. else
  53. PrevInRing = WhereInRing - 1;
  54. if (WhereInRing == NumInWebRing)
  55. NextInRing = 1;
  56. else
  57. NextInRing = WhereInRing + 1;
  58. var output = '';
  59. output += '<A HREF="' + WebRing[PrevInRing].href + '" TARGET="_top">';
  60. output += '<IMG SRC="left.png" title="check out the previous site in the ring!"><\/A>';
  61. output += '<A HREF="http://neozones.neocities.org/ourspace" TARGET="_top">';
  62. output += '<IMG SRC="ring.gif" title="join others in reclaiming the world wide web!"><\/A>';
  63. output += '<A HREF="' + WebRing[NextInRing].href + '" TARGET="_top">';
  64. output += '<IMG SRC="right.png" title="visit the next site in the ring!"><\/A>';
  65. document.write(output);