ring.html 2.9 KB

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