// Routine to display TC Regional Websites 

region = new Array("",  // this line starts the array of URL names. DO NOT remove or change it! 

// items below can be changed at will, including the number of entries 
// each row contains the URL and name of the website
// ...................................................................... 

"http://www.tandem-club.org.uk/cc/_tc-eastlondonsouthwestessex.htm","East&nbsp;London&nbsp;&amp; South&nbsp;West&nbsp;Essex",
"http://www.tandem-club.org.uk/cc/_tc-glouc-heref-worcr.htm","Gloucestershire, Herefordshire&nbsp;&amp; Worcestershire",
"http://www.tandem-club.org.uk/cc/_tc-herts.htm","Hertfordshire",
"http://www.tandem-club.org.uk/kent","Kent",
//"http://www.tandem-club.org.uk/cc/_tc-northwales.htm","North Wales",
"http://www.tandem-club.org.uk/cc/_tc-l&pr.htm","Lancashire&nbsp;L&nbsp;&amp;&nbsp;PR",
"http://www.tandem-club.org.uk/southeastlondon","South&nbsp;East&nbsp;London",
//"http://www.tandem-club.org.uk/cc/_tc-southscotland.htm","South&nbsp;Scotland",
"http://www.tandem-club.org.uk/suffolk","Suffolk",
"http://www.tandem-club.org.uk/surreyandsussex","Surrey&nbsp;&amp;&nbsp;Sussex",
"http://www.tandem-club.org.uk/cc/_tc-thameswey.htm","Thameswey (Guildford&nbsp;&amp; Reading)",
"http://www.tandem-club.org.uk/cc/_tc-westyorks.htm","West&nbsp;Yorkshire",


// ...................................................................... 
// items above can be changed at will, including the number of entries 

"") // this line completes the array.  DO NOT remove or change it! 

var regioncount = (region.length-2)/2 ; // holds number of regions in the list 
var num=1

while (regioncount>0) {
   document.write("<ul class=linklist><li class=linklist><a href="+region[num]+" target='_blank'>"+region[num+1]+"</a></li></ul>");
   regioncount=regioncount-1; // reduce regioncount by 1 before moving on to next region
   num=num+2
}
