<!--
textarray=new Array()

//Page1
textarray[0] = '<SPAN CLASS="MusicLinksTitle">Motets Music Resources</SPAN><BR>';
textarray[0]+= 'E: <A HREF="mailto:motet.resources@ntlworld.com">motet.resources@ntlworld.com</A> - W: <A HREF="http://<http://www.motetmusic.co.uk>" TARGET="_blank">www.motetmusic.co.uk</A><BR>';
textarray[0]+= 'Extensive music resources ranging from free music to guitars, midi to education, sampling to gigs, tabs to radio and loads more<BR><BR>';

textarray[0]+= '<SPAN CLASS="MusicLinksTitle">Tiff Nimble</SPAN><BR>';
textarray[0]+= 'E: <A HREF="mailto:delinquentchick@hotmail.com">delinquentchick@hotmail.com</A> - W: <A HREF="http://www.tiffnimble.co.uk" TARGET="_blank">www.tiffnimble.co.uk</A><BR>';
textarray[0]+= 'Basically rock or acoustic stuff; generally covers until we can be bothered to write our own songs. We would like gigs please!<BR><BR>';

textarray[0]+= '<SPAN CLASS="MusicLinksTitle">Bootleggers</SPAN><BR>';
textarray[0]+= 'T: 07979 231845 - E: <A HREF="mailto:info@bootleggersweb.co.uk">info@bootleggersweb.co.uk</A> - W: <A HREF="http://www.bootleggersweb.co.uk" TARGET="_blank">www.bootleggersweb.co.uk</A><BR>';
textarray[0]+= 'This Experienced, Youthful and Dynamic Band are the only Band you\'ll need to get your party started. The Bootleggers cover all genres of popular music, from the sounds of the sixties and the sensational seventies, through the electric eighties to the modern sounds of the present day. These styles interlaced with Soul and Jazz influences make them the band for all occasions.<BR><BR>';


//Page2
textarray[1] = 'Get your company listed here first';


//Page3
textarray[2] = 'Get your company listed here first';


//Page4
textarray[3] = 'Get your company listed here first';


//Page5
textarray[4] = 'Get your company listed here first';


thenum=0;

function MusicContent(daynum)
{
thenum=daynum;
theday=daynum+1;
document.getElementById('PlaceNo').innerHTML='Music Links - Page ' + theday;
document.getElementById('MusicText').innerHTML=textarray[daynum];
}

function Next(){
 if(thenum<textarray.length-1) {
 thenum++;MusicContent(thenum)
 }
}

function Previous(){
if(thenum!=0){
thenum--;MusicContent(thenum)
}
}

// -->