<!--
textarray=new Array()

//Page1
textarray[0] = '<SPAN CLASS="FootieLinksTitle">SoccerLinks.com</SPAN><BR>';
textarray[0]+= 'E: <A HREF="mailto:info@soccer-links.com">info@soccer-links.com</A> - W: <A HREF="http://www.soccer-links.com" TARGET="_blank">www.soccer-links.com</A><BR>';
textarray[0]+= 'For the largest collection of football-related links on the net.<BR><BR>';

textarray[0]+= '<SPAN CLASS="FootieLinksTitle">SchoolboySixes.co.uk</SPAN><BR>';
textarray[0]+= 'E: <A HREF="mailto:info@schoolboysixes.f9.co.uk">info@schoolboysixes.f9.co.uk</A> - W: <A HREF="http://www.schoolboysixes.f9.co.uk" TARGET="_blank">www.schoolboysixes.f9.co.uk</A><BR>';
textarray[0]+= 'Authors and publishers of the most alternative footie management game.<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 FootieContent(daynum)
{
thenum=daynum;
theday=daynum+1;
document.getElementById('PlaceNo').innerHTML='Footie Links - Page ' + theday;
document.getElementById('FootieText').innerHTML=textarray[daynum];
}

function Next(){
 if(thenum<textarray.length-1) {
 thenum++;FootieContent(thenum)
 }
}

function Previous(){
if(thenum!=0){
thenum--;FootieContent(thenum)
}
}

// -->