| 
|
|

|
|

|
|

|
|
|
|

<%
dim link(5,100)
dim linktype
dim linkaddress
dim linkdescription
dim linktitle
dim currentlink
dim currentcategory
dim numberoflinks
dim numberofcategories
dim category(10)
linktype = 0
linkaddress = 1
linkdescription = 2
linktitle = 3
currentlink = 0
link(linktype,0) = 0
link(linkaddress,0) = "http://www.amplifythis.co.uk"
link(linkdescription,0) = "Covers loads of UK bands"
link(linktitle,0) = "Amplify This"
link(linktype,1) = 0
link(linkaddress,1) = "http://www.buddyhead.com"
link(linkdescription,1) = "Used to be funny"
link(linktitle,1) = "BuddyHead"
link(linktype,2) = 0
link(linkaddress,2) = "http://www.diskant.net"
link(linkdescription,2) = "Millions of band links"
link(linktitle,2) = "Diskant"
link(linktype,3) = 0
link(linkaddress,3) = "http://www.glaiverecords.com"
link(linkdescription,3) = "Buy Escannas first single from here"
link(linktitle,3) = "Glaive Records"
link(linktype,4) = 0
link(linkaddress,4) = "http://www.pinkflag.com"
link(linkdescription,4) = "Wires official site. Fuck Elastica"
link(linktitle,4) = "Wire"
link(linktype,5) = 0
link(linkaddress,5) = "http://www.placeposition.co.uk"
link(linkdescription,5) = "Portable studio responsible for our first release"
link(linktitle,5) = "Place Position"
link(linktype,6) = 1
link(linkaddress,6) = "http://www.feverdream.nl"
link(linkdescription,6) = "Our rocking chums from Holland"
link(linktitle,6) = "Fever Dream"
link(linktype,7) = 1
link(linkaddress,7) = "http://www.mclusky.com"
link(linkdescription,7) = "Best thing to come out of Wales since John Rhys-Davies"
link(linktitle,7) = "McClusky"
link(linktype,8) = 2
link(linkaddress,8) = "http://www.bruce-campbell.com"
link(linkdescription,8) = "The man, the legend, the chin"
link(linktitle,8) = "Bruce Campbell"
link(linktype,9) = 2
link(linkaddress,9) = "http://www.cookdandbombd.co.uk"
link(linkdescription,9) = "Chris Morris archive site"
link(linktitle,9) = "Cookd And Bombd"
link(linktype,10) = 2
link(linkaddress,10) = "http://www.play.com"
link(linkdescription,10) = "Cheap as chips for DVDs"
link(linktitle,10) = "Play.com"
link(linktype,11) = 2
link(linkaddress,11) = "http://www.readingfc.co.uk"
link(linkdescription,11) = "By far the greatest team the world has ever seen"
link(linktitle,11) = "Reading FC"
link(linktype,12) = 2
link(linkaddress,12) = "http://www.steakandcheese.com"
link(linkdescription,12) = "Wrong, so wrong. But funny"
link(linktitle,12) = "Steak And Cheese"
link(linktype,13) = 2
link(linkaddress,13) = "http://www.tvgohome.com"
link(linkdescription,13) = "TV listings pisstake - Damn good"
link(linktitle,13) = "TV Go Home"
numberoflinks = 14
numberofcategories = 3
category(0) = "Music - Other"
category(1) = "Music - Bands"
category(2) = "Other"
%>
<% for currentcategory = 0 to (numberofcategories - 1) %>
|

<% response.write(category(currentcategory)) %>
|
 |
<% for currentlink = 0 to (numberoflinks - 1) %>
<% IF (link(linktype,currentlink) = currentcategory) THEN %>
<% response.write(link(linktitle,currentlink)) %>
|
<% response.write(link(linkdescription,currentlink)) %>
|
<% END IF %>
<% next %>
<% next %>

|
|
|
|



|
|

|