<!--
textarray=new Array()

//Page1
textarray[0] = '<SPAN CLASS="MusicLinksTitle">Beer &amp; Totty</SPAN><BR>';
textarray[0]+= 'E: <A HREF="mailto:sam@beerandtotty.co.uk">sam@beerandtotty.co.uk</A> - W: <A HREF="http://<http://www.beerandtotty.co.uk>" TARGET="_blank">www.beerandtotty.co.uk</A><BR>';
textarray[0]+= 'A website reviewing worldwide pubs, bars and clubs in terms of both Beer and Totty.<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 LassesContent(daynum)
{
thenum=daynum;
theday=daynum+1;
document.getElementById('PlaceNo').innerHTML='Totty Links - Page ' + theday;
document.getElementById('LassesText').innerHTML=textarray[daynum];
}

function Next(){
 if(thenum<textarray.length-1) {
 thenum++;LassesContent(thenum)
 }
}

function Previous(){
if(thenum!=0){
thenum--;LassesContent(thenum)
}
}

// -->