<!--
textarray=new Array()

//Page1
textarray[0] = '<SPAN CLASS="FilmsLinksTitle">John Bull Video</SPAN><BR>';
textarray[0]+= 'Highthorn Road, Swinton, Rotherham<BR>';
textarray[0]+= 'T: 01709 590234<BR>';
textarray[0]+= 'We supply everything from all the latest videos to all the food and drink that you would need for a cosy night in.<BR><BR>';


//Page2
textarray[1] = 'Get your company listed here';


//Page3
textarray[2] = 'Get your company listed here';


//Page4
textarray[3] = 'Get your company listed here';


//Page5
textarray[4] = 'Get your company listed here';

thenum=0;

function FilmsContent(daynum)
{
thenum=daynum;
theday=daynum+1;
document.getElementById('PlaceNo').innerHTML='Film Links - Page ' + theday;
document.getElementById('FilmsText').innerHTML=textarray[daynum];
}

function Next(){
 if(thenum<textarray.length-1) {
 thenum++;FilmsContent(thenum)
 }
}

function Previous(){
if(thenum!=0){
thenum--;FilmsContent(thenum)
}
}

// -->
