<!--
// Added by Paul Amass
// random forum tip
var NUMBER_OF_MESSAGES = 5
var tip = new Array(NUMBER_OF_MESSAGES)
 tip[0] = "Add picture next to your posts - Go to Profile, and click Show Gallery under Avatar";
 tip[1] = "To insert <b>Bold</b> text, select the text you want bold, and press the <input type=\"button\" value=\"B\" class=\"button\" > button ";
 tip[2] = "<a href=\"profile.php?mode=register\">Register Now</a> to post in the forums, or just browse the topics.";
 tip[3] = "Forgotten your password - <a href=\"profile.php?mode=sendpassword\">click here to have it emailed to you!</a>";
 tip[4] = "<a href=\"profile.php?mode=register\">Join now</a> and post: News, Programme ideas, Useful Scouting Knowledge....</a>";
 

var now = new Date()
var sec = now.getSeconds()
document.write("Forum Tip: " + tip[sec % NUMBER_OF_MESSAGES]);

//-->