function changeLeagueHeaderText(){
  var strings = new Array(
    'Let the bookie give you his money',
    '&pound; &pound; &pound;s in free bets, click now',
    'Take the bookie to the cleaners',
    'Click here for no lose bets',
    'Click here for &pound; 600+ in free bets'
  );
  var lh = document.getElementById("leagueheader");
  random=Math.floor(Math.random()*strings.length);
  lh.firstChild.data = strings[random];
}
function frmSubmit(frmName){
  var theForm = document.forms[frmName];
  if(!theForm){
    alert(frmName);
    theForm = document.getElementById(frmName);
  }
  theForm.submit();
}
