// ## Random crap #######################################################
// #                                                                    #
// # Yeah, i know this code is evil but it was the best I could come up #
// # with at 22:30                                                      # 
// #                                                                    #
// ############################################################## v1.0 ##

// Here are some variables... Aren't they nice?

var maxarray = 100 // Maximum size of the array
var count = 0      // Number of items in the array
var linkarray = new Array(maxarray)

// And now some functions (am I going too fast for you?)

function link(t,l,d) {
  this.type = t
  this.link = l
  this.desc = d
}

function addLink(t,l,d){
  if(t=="title"){
    if(count<maxarray-1){
      linkarray[count] = new link(t,"",l)
      count++
    }
  }else{
    if(count<maxarray-1){
      linkarray[count] = new link(t,l,d)
      count++
    }
  }
}

function displayLinks() {
  for (x=0;x<count;x++) {
    if (linkarray[x].type=="link") {
      document.write("<A HREF=\""+linkarray[x].link+"\">"+linkarray[x].desc+"</A><BR>")
    } else {
      document.write("<B><FONT SIZE=\"1\">"+linkarray[x].desc+"<\/FONT><\/B><BR>")
    }
  }
}

// OK, functions over... let's add some links (yay!)

addLink("title","sprOw")
addLink("link","http://sprow.net/muzik","Muzik")
addLink("link","http://sprow.net/pizza","Pizza")
addLink("link","http://sprow.net/slm","Love Match")
addLink("link","http://sprow.net/swd","Web Design")
addLink("link","http://sprow.net/medisprow","MediSprow")
addLink("title","random")
addLink("link","http://cryosphere.net","Cryo")
addLink("link","http://evilmagic.org","Evil Magic")
addLink("link","http://www.uncleclive.co.uk/index.html","Uncleclive")
addLink("link","http://www.4bitterguys.com","4BG")
addLink("link","http://www.penny-arcade.com","Penny Arcade")
addLink("link","http://www.mycathatesyou.com","Evil Cats")
addLink("link","http://www.jesusdressup.com","Dress up Jesus")
addLink("link","http://www.xmission.com/~maddox","Best Page")
addLink("link","http://www.b3ta.com","b3ta")
addLink("link","http://www.weebl.jolt.co.uk/","pie")
addLink("link","http://www.weebls-stuff.com","Weebl's Stuff")
addLink("link","http://www.homestarrunner.com","Home Star Runner")
addLink("link","http://thesurrealist.co.uk/other.cgi","other listings magazine")
addLink("title","tv")
addLink("link","http://pythonet.org/open.html","PythoNET")
addLink("link","http://www.powerage.demon.co.uk/fastshow/home.htm","Fast Show")
addLink("link","http://www.leitchs.free-online.co.uk/index.html","League Against Tedium")
addLink("link","http://www.vicandbob.net","Vic & Bob")
addLink("link","http://corpses.comedynetuk.com/","Old comedy!")
addLink("title","amiga")
addLink("link","http://www.amiga.org","amiga.org")
addLink("link","http://www.ann.lu","amiga network news")
addLink("title","music")
addLink("link","http://pweination.org/","Pweination")
addLink("link","http://www.loopz.co.uk/begin.html","Loopz")
addLink("link","http://addntox.com/","Add N To (X)")
addLink("link","http://www.theprodigy.com/","Prodigy")
addLink("link","http://www.discogs.com/","Discogs")
addLink("link","http://www.warprecords.com/","Warp Records")
addLink("title","film")
addLink("link","http://www.deadites.net","Deadites!")
addLink("link","http://www.badmovies.org","Bad Movies")
addLink("title","skate")
addLink("link","http://www.planettonyhawk.com/","Planet Tony Hawk")
addLink("link","http://ccs.com","CCS")
addLink("title","people")
addLink("link","http://oozamaflips.net/","Chazwanger")
addLink("title","<img src='http://web.icq.com/whitepages/online?icq=70699901&amp;img=5' height='18' width='18'>")
addLink("link","http://wwp.icq.com/scripts/search.dll?to=70699901","Add User")
addLink("link","http://wwp.icq.com/scripts/contact.dll?msgto=70699901","Send Message")


// And now, print some stuff out and display the links!

document.write("<TD ALIGN=\"right\" WIDTH=\"100\" BGCOLOR=\"#505060\" VALIGN=\"Top\">")
displayLinks()
document.write("<\/TD>")
