// Thanks to Ben - http://www.bbarden.com for helping me with script implementation // This script prints the menubar to the each page the function is called in. function menubar(){ // Calls Function var menu = " "; //Declaring Variable and emptying its values. menu += "
" //Adds html code to each variable menu += " Main " menu += " | The Principles" menu += " | The Example" menu += " | How to use your free bets" menu += " | Matched Betting: Free money blog" menu += "
" document.write(menu); //Print variable } function sidebar(){ var menu = " "; //Declaring Variable and emptying its values. menu += "

Friends Pages

" menu += "Ally
" menu += "Bungle
" menu += "Coolio
" menu += "Dirk
" menu += "Froth
" menu += "Gaz
" menu += "I-Pod
" menu += "JD
" menu += "Kat
" menu += "Phil
" menu += "Sam
" menu += "Scrappy
" menu += "Sophie
" menu += "Sweet Cheeks
" menu += "Ubhi
" menu += "

" menu += "

Favourite Links

" menu += "Stapleton
" menu += "AU Men's Hockey Club
" menu += "GMail
" menu += "538 = 102FM
" menu += "BBC Sport
" menu += "clan-bbb flash games
" menu += "geospatial news aggregator
" document.write(menu); //Print variable } function credits(){ // Calls Function var menu = " "; //Declaring Variable and emptying its values. menu += "

" menu += "" menu += "" menu += "
" menu += "
" menu += " 2007 Matched Betting: Free Money. All Rights Reserved. " menu += "
" menu += " No material may be reproduced without prior consent" menu += "
" menu += " Residents of the United States are excluded from these offers due to gambling restrictions. Check your local laws first
" menu += "This code validates as " menu += "XHTML 1.0 Transitional

" menu += " " menu += "

" document.write(menu); //Print variable }