// WEBSITE HISTORY / WHAT'S NEW
// history.js

// Decided to use a SITE_LAST_UPDATED date rather than rely on the last date in the history array
// Since the history array tends to only get new things that are worthy of a look, rather than corrections
// and minor tweaks.
var _SITE_LAST_UPDATED = '02/03/2010';

// SHOULD BE SAME AS _DATABASE_UPDATED IN database.js
// USED TO CONFIRM LATEST DATABASE FILE
var _DATABASE_VALIDATION = '02/03/2010';

// RETURNS FORMATTED LAST UPDATED DATE - New - From _SITE_LAST_UPDATED variable
// Format - true / false (DEFAULT true)
function f_lastUpdated(Format) {
  if (typeof(Format) == 'undefined') Format = true;
  if (Format) {
    return f_formatDateStr(_SITE_LAST_UPDATED,false,true);
  } else {
    return _SITE_LAST_UPDATED;
  }
}

// RETURNS FORMATTED LAST UPDATED DATE - From history Array
// Format - true / false (DEFAULT true)
function f_lastHistoryUpdated(Format) {
  var record = History[History.length - 1];
  var fields = record.split('|');
  if (typeof(Format) == 'undefined') Format = true;
  if (Format) {
    return f_formatDateStr(fields[0],false,true);
  } else {
    return fields[0];
  }
}

// RETURNS LAST HISTORY RECORD(s)
// ShowNo - NUMBER OF RECORDS TO SHOW - IF ONLY 1 THEN DATE IS NOT SHOWN (DEFAULT 1)
//          IF 0 THEN SHOWS ALL
// Detail - _VERBOSE (DETAILED OUTPUT), OTHERWISE DEFAULT TO _BRIEF (ie. NOT _VERBOSE!)
function f_lastHistory(ShowNo,Detail) {
  var t = '';
  var count;
  var recno, fields;
  var MaxChar = 1000;

  // INIT
  if (typeof(ShowNo) == 'undefined') ShowNo = 1;
  if (ShowNo == 0) ShowNo = History.length;
  if (typeof(Detail) == 'undefined') Detail = _BRIEF;
  Verbose = (Detail == _VERBOSE);
  count = 0;
  recno = History.length - 1;	// LATEST IS LAST

  while ((recno >= 0) && (count < ShowNo)) {
    if (count > 0) {
      if (Verbose) {
        t += '<DIV STYLE="clear:both;border-top:1px dashed #999999;margin-top:10px;"><IMG SRC="/img/blankdot.gif" WIDTH=1 HEIGHT=1></DIV>';
      } else {
        t += '<BR><DIV STYLE="margin-top:4px;margin-bottom:3px;border-top:1px dashed #999999;"><IMG SRC="/img/blankdot.gif" WIDTH=1 HEIGHT=1></DIV>';
      }
    }

    fields = History[recno].split('|');

    if (Verbose) t += '<P>';
    if (ShowNo > 1) {
      t += '<A NAME="' + recno + '"><B>' + f_formatDateStr(fields[0],false,false) + '</B></A> - ';
    }

    // HEADLINE
    if (fields[1] > ' ') {
      t += '<B>' + fields[1] + '</B>';
      if (Verbose) {
        t += '<BR>';
      } else {
        t += '.  ';
      }
    }

    // BRIEF DESC
    // (SHOULD NEVER BE > MaxChar)
    if (fields[2].length > MaxChar) {
      t += fields[2].substring(0,MaxChar) + '...';
    } else {
      t += fields[2];
    }

    if (Verbose) t += '</P>';

    // LONG DESC?
    if (fields.length > 3) {
      if (fields[3] > ' ') {
        if (Verbose) {
          t += '<P>' + fields[3] + '</P>';
        } else {
          t += ' [<A HREF="/history/history.html#' + recno + '">More...</A>]';
        }
      }
    }

    count++;
    recno--;
  }

  return t;
}

// HISTORY
// DATE | HEADLINE (BOLD) | BRIEF DESC | TECHNICAL IN DEPTH
var i = 0;
var History = new Array();

History[i++] = '15/1/2005|General & Match Update|The <A HREF="/matches/teams.html">teams page</A> is new.  Match report from last Mondays Reading Mens A match against Cotswold away.  A couple more match venues, some more links and a few tweaks...|Started this history log, but user cannot access past entries or more <I>verbose</I> section just yet.  Plan to modify the \'<I>Club News</I>\' in a similiar way.';

History[i++] = '17/1/2005|Technical Update|The Results and Tables are now on seperate pages, with some other cosmetic changes, having reworked how the pages are displayed - basically makes it easier from a webmaster\'s perspective and should be clearer to the user.|Made the site more modular, separating the database and the functions.  This has meant some cosmetic changes with the fixtures, results and tables, being on seperate pages now.  But more importantly makes the site easier to update from season to season and should allow pages to load faster since the core database file is now alot smaller.';

History[i++] = '18/1/2005|Match Report & Results|The results of last nights (Mon 17th) Reading Mens B 9-0 stomping against British Rail are up - [<A HREF="/reports/report20050117RMB.html">Read Richard\'s Match Report</A>].  Minor changes to the home page.|Fixed the footer which was incorrectly linking to the old fixtures and results pages after the changes made yesterday.  When viewing the fixtures for previous seasons, it now defaults to showing the <I>played</I> fixtures, as opposed to the <I>unplayed</I> fixtures, otherwsie you don\'t get to see anything at first!  Viewing <I>All Seasons</I> defaults to showing <I>All</I> fixtures.  It is now possible to link directly to a match scoresheet, eg. to email a link to a scoresheet.  Previously you could only access the scoresheets via the <I>Fixtures/Results</I> page, or from a <I>Match Report</I>.';

History[i++] = '21/1/2005|Match Report|Some minor updates to the teams page for the current season.  [<A HREF="/reports/report20050117RMB.html">Read Richard\'s Match Report</A>] from the Reading Mens B match against British Rail last Monday.|The teams page now has a <I>conditional</I> section, depending upon what season is being viewed.  Corrected a link on the <A HREF="/matches/archive.html">Match Archive page</A> that pointed to the wrong season!  Probably won\'t update much of the site now, apart from match results and reports, until I\'ve moved the site from <I>frames</I> to <I>no-frames</I> and tweaked the interface a tad.';

History[i++] = '25/1/2005|Results & Match Report|The [<A HREF="/matches/scoresheet.html?20050124BrM">full results</A>] of last nights home match against Prospect for the Bracknell Men (we lost 2-4).  <NOBR>[<A HREF="/reports/report20050124BrM.html">Read Richard\'s Match Report</A>].</NOBR>';

History[i++] = '26/1/2005|Results & Match Report|Last nights 1&frac12;-7&frac12; Reading Mixed defeat against Whiteknights away - [<A HREF="/matches/scoresheet.html?20050125RX">Results</A> & <A HREF="/reports/report20050125RX.html">Report</A>].  And the [<A HREF="/matches/scoresheet.html?20050124BrM">Results</A>] of Mondays home 2-4 defeat against Prospect for the Bracknell Men.  <NOBR>[<A HREF="/reports/report20050124BrM.html">Richard\'s Report</A>].</NOBR>';

History[i++] = '28/1/2005|Match Results|A busy week for matches... Mon (BrM), Tues (RX), Thurs (RMA) and Fri (RMB).  Results of Thursdays RMA away game against Carlile are [<A HREF="/matches/scoresheet.html?20050127RMA">here</A>] - an unlucky 2-7 defeat at Waingels Copse School.';

History[i++] = '1/2/2005|Match Result Correction|Sorry, got the pairings slightly wrong in last Thursdays RMA match against Carlile away, [<A HREF="/reports/report20050127RMA.html">See Revised Report</A>].  Still need the results from last Fridays RMB match and the BrX match on Monday.|Included a notice on the homepage regarding the possibility of an article being published in the Wokingham Times tomorrow about the Silver Fox Badminton Club!';

History[i++] = '4/2/2005|Two Match Results|Results of the last two matches just in. A 6&frac12;-2&frac12; win last Friday (28th Jan) for the RMB vs Crescent Away game. And a narrow 5-4 win on Monday (31st Jan) for the BrX vs Bracknell (with only 2 pairs!) at home. Hurrah!';

History[i++] = '9/2/2005|Match Results & Venue|Result and brief report of Mondays RMA vs Ufton, an astounding 6-3 win at home with a hastily gathered team. Details of the whereabouts of Castle Leisure Centre (the venue for RMA\'s match on the 24th Feb). And the results of last nights RMB 2&frac12;-6&frac12; defeat vs Whiteknights at Crosfields School.';

History[i++] = '10/2/2005|Match Report|Richard\'s match report from Tuesdays RMB 2&frac12;-6&frac12; defeat vs Whiteknights at Crosfields School. [<A HREF="/reports/report20050208RMB.html">Read all about it...</A>]';

History[i++] = '15/2/2005|Match Report|Richard\'s match report from Mondays RMB 8&frac12;-&frac12; triumphant win against Lanes at Denefield School. [<A HREF="/reports/report20050214RMB.html">Read all about it...</A>].';

History[i++] = '19/2/2005|Match Report & Info|The Bracknell Men won 5-1 at home on the 14th, after <A HREF="/reports/report20050214BrM.html">forgetting the shuttlecocks</A>!  BrX home match against Newcomers last Thurs (17th) was cancelled.';

History[i++] = '20/2/2005|Match Results|The full results of last Mondays Bracknell Mens (Four) 5-1 home win against Brakenhale just in from AndyT.';

History[i++] = '22/2/2005|Match Result & Report|The result of Mondays Reading Mixed match against Hawley just in. A closer than it looks 1&frac12;-7&frac12; defeat at home.  <NOBR>[<A HREF="/reports/report20050221RX.html">Read all about it...</A>]</NOBR>|Also updated the members list - 23rd Feb.';

History[i++] = '1/3/2005|Match Result & Report|The result of last nights (28th Feb) RMB vs Crescent - A \'<I>pinch punch first day of the month</I>\' 7&frac12; - 1&frac12; stomping at home. <NOBR>[<A HREF="/reports/report20050228RMB.html">Richard\'s Match Report</A>]</NOBR> just in!|Again updated the members list with the very latest info... another member, and an email change.';

History[i++] = '2/3/2005|Match Results & Reports|Just in - 24th Feb RMA vs Wallingford 6&frac12;-1&frac12; win in a land far far away! <NOBR>[<A HREF="/reports/report20050224RMA.html">Read Nigel\'s Report</A>]</NOBR>.  Mon 28th Feb RMB vs Crescent 7&frac12;-1&frac12; win at home. <NOBR>[<A HREF="/reports/report20050228RMB.html">Richard\'s Match Report</A>]</NOBR>. And we\'ve just topped the <I>5000</I> visitors mark!  Wehey!|5,000 visitors.  Ok, so it\'s taken us almost 3 years and 3 months, but hey.  Not bad though.  Remember, this is a number of <I>unique</I> visitors to the site, not simply the number of <I>hits</I> that the site gets.  Because the counter monitors IP addresses and the time between visits, it does not count simple page resfreshes or even the same person returning to the site a short time after.  5,000 visitors equates to an average of just over 4.2 visitors a day since creation, and in the last month we have averaged just over 12 a day.  Recently we have peaked at around 30 in any one day. And it\'s not all me!';

History[i++] = '4/3/2005|New Website!!|A major update to the Silver Fox Badminton Club Website and now located at <A HREF="http://www.silverfoxbc.co.uk">www.silverfoxbc.co.uk</A>.  A more up-to-date look and feel with dynamic news and diary content.|<DIV CLASS="btn"><A HREF="/history/details20050304.html">More Details...<\/A><\/DIV>';

History[i++] = '7/3/2005|Site Update!|Some minor updates to the site, a [<A HREF="/matches/reporters.html">reports summary</A>] page and Dave\'s photo in the News.';

History[i++] = '11/3/2005|Match Reports & Results|A plethora of results and reports just in.  Mondays Reading Mixed vs Ufton and the two Thursday matches vs Malvern and Nomads for the Reading Mens A [<A HREF="/reports/report20050310RMA.html">NigelP\'s Report</A>] and Bracknell Mens [<A HREF="/reports/report20050310BrM.html">NigelC\'s Report</A>] respectively.';

History[i++] = '16/3/2005|Match report & Result|The results of Mondays RMB match against Whiteknights - we almost got \'em!  4-5 at home.  [<A HREF="/reports/report20050314RMB.html">Report<\/A>].|<DIV STYLE="float:left;margin-right:10px;"><IMG SRC="/img/valid-html401_half.gif" WIDTH=44 HEIGHT=15 ALT="Valid HTML4.01!"><BR><IMG STYLE="margin-top:2px;" SRC="/img/vcss_half.gif" WIDTH=44 HEIGHT=15 ALT="Valid CSS!"><\/DIV>On a technical note... you may have noticed the <B>w3c<\/B> icons in the left margin. I\'ve been through quite a few of the main pages to make sure they are HTML 4.01 (Transitional) and CSS \'<I>w3c standards compliant<\/I>\', and for the ones I\'ve checked I\'ve popped the relevant icons on them. Most pages pass without so much as a hitch, and other pages that I\'ve not yet checked should get through without much more than a tweak. Writing <I>Standards Compliant<\/I> code is sometimes a matter of opinion. Pages can work perfectly well on all browsers, whether they are compliant or not, or even written in <A HREF="http://www.quirksmode.org/">Quirks Mode</A>. Browsers aren\'t going to stop displaying none compliant code for quite sometime, since most of the webpages out there on the world wide web are not standards compliant! But <I>Standards Compliant<\/I> code should ensure compatibility in future browser versions and certainly aids <I>Accessibility<\/I> issues, which is becoming increasingly important.';

History[i++] = '18/3/2005|Match Result & Report|The Results of Thursdays RMB 7-2 away win against British Rail.  [<A HREF="/reports/report20050317RMB.html">Nigel C\'s Report</A>] just in!  Members information / email addresses also tweaked a tad.|Tecnical bit... many of the main pages now display a warning if you have JavaScript disabled in your browser. There is then a link to a [<A HREF="/nojs.html">Help Page</A>] with a few tips on how to enable it again. Most of the pages on this site use JavaScript to generate the content. Without JavaScript enabled, you are not going to see a great deal!';

History[i++] = '22/3/2005|Match Result/Report|Last nights home match for the BrX against Malvern - a close 4-5 defeat. [<A HREF="/reports/report20050321BrX.html">Read the Report</A>]  Details of the whereabouts of <A HREF="/clubs/details/trevelyan_middle_school.html">Trevelyan Middle School</A> for tonights BrM match against Windsor Phoenix.';

History[i++] = '24/3/2005|Match Result|Tuesdays 3-6 defeat against Windsor Phoenix for the BrM team. [<A HREF="/matches/scoresheet.html?20050322BrM">See the Scoresheet</A>]<BR>Report coming soon...|Also made some additions to the <A HREF="/clubs/details/trevelyan_middle_school.html">Trevelyan Middle School</A> page, having now been there!';

History[i++] = '1/4/2005|More Match Venues...|And some news and a tweak here and there.  Details of the whereabouts of <A HREF="/clubs/details/theale_green_school.html">Theale Green School</A> and <A HREF="/clubs/details/yateley_manor_school.html">Yateley Manor School</A> for several fixtures over the coming month.|Tweaked some of the graphics too.';

History[i++] = '4/4/2005|Match Results & Report|Last Fridays RMB 6-3 away win against Ufton at Theale Green School.  <A HREF="/reports/report20050401RMB.html">Nigel C\'s report</A> just in!|Minor update to the scoresheets and tables so they print a bit better - using a seperate print stylesheet.';

History[i++] = '6/4/2005|Match Results|The full results of Mondays close RX vs Lanes 3&frac12;-5&frac12; defeat at home and Tuesdays triumphant 8-1 away win for the BrM vs Nomads are up.|Also updated the <A HREF="/clubs/details/theale_green_school.html">Theale Green School</A> and <A HREF="/clubs/details/yateley_manor_school.html">Yateley Manor School</A> venue pages, having now just been there.  Updated the <I>Club News</I> section a tad also.';

History[i++] = '7/4/2005|Match Report|<A HREF="/reports/report20050405BrM.html">Nigel C\'s match report</A> just in for Tuesdays BrM away win against Nomads.  The last match of the season of the Bracknell Men.';

History[i++] = '8/4/2005|Members List Updated|<SPAN TITLE="Steve">New member</SPAN> gets listed.';

History[i++] = '14/4/2005|Match Results & Reports|The results of the last two RMA matches of the season just in.  A triumphant 6&frac12;-2&frac12; a piece against both Ufton and Wallingford.  [<A HREF="/reports/report20050408RMA.html">Read Nigel\'s Reports</A>].';

History[i++] = '21/4/2005|Match Result & Report|Mondays Reading Mixed vs Carlile at home just in.  An exhausting 2&frac12;-6&frac12; defeat to finish the season on.  [<A HREF="/reports/report20050418RX.html">Read the report...</A>]';

History[i++] = '22/4/2005|RMB Report and Player Lookup|Thursdays Reading Mens B vs Prospect at Hugh Faringdon School just in.  Last one of the season for the men and with only two pairs to boot.  [<A HREF="/reports/report20050421RMB.html">Read Nigel\'s Report</A>]  NEW FEATURE... <I>Player&nbsp;Lookup</I> allows you to search for any player or club member.|The Player Lookup feature enables you to search the database of players and past/present club members.  Everyone who is recorded to have played in a match is in the database, not just Silver Fox players.  So, for example, you can find all <I>Prospect</I> players we have played against, or all the people whose name starts with the letter "M"!  This is of course only available were a full match scorecard was available to put on the system in the first place.  In some cases only the rubbers of the Silver Fox team were recorded.  This feature is still not finished, however, as ultimately the system will report all the matches that a particular person has played in.<BR><BR>The Silver Fox website is now hosted with <A HREF="http://www.matrixinternet.co.uk">Matrix Internet</A>.  A dedicated hosting plan.  As opposed to being a subdomain within my own personal webspace at <A HREF="http://www.penders.co.uk">penders.co.uk</A>.  I moved all the files over last night, and by this morning the nameservers had also kicked in, so everything was up and running with hardly any down time.  You shouldn\'t notice anything different to be honest - it should all still work as it did, although I have tweaked a couple of things.  The address is still the same - <A HREF="http://www.silverfoxbc.co.uk">www.silverfoxbc.co.uk</A> - which should now remain as "http://www.silverfoxbc.co.uk/.." in the <I>address bar</I>, as opposed to being redirected to "http://www.silverfoxbc.penders.co.uk/.." as what previously happened.';

History[i++] = '1/5/2005|Match Result and Comment|The last one this season, as the Bracknell Mixed bring the season to a close with an unlucky 8-1 defeat against Prospect at Hugh Faringdon School. [<A HREF="/reports/report20050428BrX.html">Comment</A>]|Fixed last weeks RMB report.  It was written by Nigel, not Andy!  Oops.  Made some minor technical tweaks to the site too.  Improved a few visual things if you are viewing the site at massively high resolutions of more than 1152px wide.  Stuck a bit of code in to stop the site being trapped in someone elses frameset, after having noticed that a couple of high ranking websites have linked to ours with a non-targeted anchor within a frame!';

History[i++] = '14/5/2005|News / Poster Campaign|Updated the News & Diary and put up details about the "<I>We need more ladies!</I>" <A HREF="/news/more/ladiesposter.html">poster campaign</A>!';

History[i++] = '17/5/2005|Poster Campaign Update|More posters go up in the search for more ladies to play badminton!  [<A HREF="/news/more/ladiesposter.html#where">Where are they?</A>]';

History[i++] = '13/6/2005|Posters Working!|One or two more posters go up [<A HREF="/news/more/ladiesposter.html#where">Where are they?</A>] - getting some positive feedback from the poster campaign!  Members committee info updated a tad and some other tweaks here and there.';

History[i++] = '8/9/2005|Scorecards Updated|Updated the <a href="/matches/scorecards.html">scorecards</a> with the latest and rescanned them so they print a bit better.  Since I\'ve just recieved them from the leagues.  So if you need a scorecard for a match, you can print one from <a href="/matches/scorecards.html">here</a>.';

History[i++] = '13/9/2005|Match Fixtures 2005/2006|The <a href="/matches/fixtures.html">fixtures for the coming season</a> are now up and can be printed directly from the website.  The <a href="/matches/teams.html">teams</a> are also up, subject to tweaking <em>the squad</em> a tad.|There has been quite a few minor tweaks throughout the website too, largely to accommodate the new fixtures, with new clubs and venues.  I have also further secured peoples email addresses - to protect everyone from the dreaded spammers!  I may just be a tad paranoid, but I do get more than the average amount of <a href="/antispam.html">spam/junk email</a> having been a bit too <em>public</em> with my email address in the past!  Now, email addresses that are on the site are partially converted to images, so there is just no way your email address can be <em>grabbed</em> by a bot.  This, however, also means that as a user, you cannot simply cut \'n\' paste email addresses you see on screen - you will need to copy them down using good ol\' pen and paper!';

History[i++] = '16/9/2005|Members Info/Teams|Updated the <a href="/members/members.html">members info</a> to reflect the info Nigel sent out earlier, and tweaked <a href="/matches/teams.html">the teams</a> a tad.  Also, when you now print the fixtures, using the [Printer Version] btn, the results reflect what options you have picked, as opposed to simply displaying <em>all</em> the fixtures for the season.  You can now print the <a href="/matches/results.html">results</a> in a similiar fashion as well.';

History[i++] = '20/9/2005|Pick by Club|In addition to the regular options, you can now filter the <a href="/matches/fixtures.html">match fixtures</a>, <a href="/matches/results.html">results</a> and <a href="/matches/reports.html">reports</a> by the <a href="/clubs/clubs.html">clubs</a> we have played against.  Leave the option set to, or pick, "<em>All Clubs</em>" to view matches played against all clubs.  Tweaked a few things cosmetically in this area as well.';

History[i++] = '21/9/2005|Recent Results|You can now easily view the recent match results that have been posted, with a link to the match report as well, where available.  It\'s down the right hand side of the <a href="/">homepage</a> just beneath the upcoming fixtures.  Also added some clubs to the <a href="/links/links.html">links page</a> - I found a few sites for clubs who play in the <a href="http://www.acdbl.co.uk" title="Aldershot & Camberley">ACDB League</a>.';

History[i++] = '28/9/2005|Badminton Training Info|Cameron came across a rather useful <abbr title="Badminton Association of England">BAofE</abbr> document on the subject of <a href="/other/other.html">training techniques for badminton</a> and thought that maybe other club members might find it helpful.  You can download a copy from the <a href="/other/other.html">Other Stuff</a> page.  Also created a page on the whereabouts of <a href="/clubs/details/lambrook_haileybury_school.html">Lambrook Haileybury School</a>, a new badminton venue for most.|On the subject of venues, the <a href="/clubs/details/theale_green_school.html">Theale Green School venue page</a> has been updated, having played there recently.  See the <a href="/">homepage</a> for recent results of the Reading Mens.<br /><br /><a href="/history/img/server_maintenance.gif" onClick="javascript:showImg(\'/history/img/server_maintenance.gif\',\'Website Down!\',\'27th Sept 2005 - All day!\',532,188);return false;"><img style="float:left;margin-right:20px;margin-bottom:10px;width:212px;height:90px;border:0px;" src="/history/img/server_maintenance_crop.gif" alt="Website Maintenance Message" title="Website Maintenance Message"></a>The website was unfortunately down all yesterday (Tuesday 27th) it seems.  Apologies for any inconvenience, but alas, it was out of my control.  The <span class="info" title="Matrix Internet">web host</span> decided it was time for <em>scheduled</em> maintenance, which involved moving the entire website to another server with a possible downtime of upto 24hrs!  And they didn\'t even tell us!  Humph!';

History[i++] = '5/10/2005|Supersized Scoresheets!|The standard Bracknell scoresheets are a bit small when you\'re trying to fill one in with a sweaty shaking hand, so I\'ve blown them up a bit!  You can still print out the original-sized scoresheets on the <a href="/matches/scorecards.html">scorecards page</a>, but you\'ve now got a couple of supersized Bracknell league ones you can print as well.  Check out the <a href="/matches/scorecards.html">blank match scoresheets</a>.';

History[i++] = '6/10/2005|Venue Update|Updated the <a href="/clubs/details/lambrook_haileybury_school.html">Lambrook Haileybury School</a> badminton match venue page with some more info, having just been there.';

History[i++] = '21/10/2005|RBA Cup Info|Put a page up with <a href="/matches/rbacup.html">some information</a> and <span class="info" title="Cup Rules, Draw 2005, Scoresheet etc.">a few downloads</span> regarding the <a href="/matches/rbacup.html">RBA Knock-Out Cup</a>. You can also download a copy of the actual scoresheet from the [<a href="/matches/scorecards.html">Scorecards Page</a>].';

History[i++] = '5/11/2005|New Venue Details|Put a page up with details of how to get to <a href="/clubs/details/wolfenden_sports_centre.html">Wolfenden Sports Centre</a> (Reading Uni), with having several matches there this season, including a RMB game next Tuesday (8th Nov).  Updated the <a href="/clubs/details/emmbrook_school.html">Emmbrook School</a> info page as well.';

History[i++] = '7/11/2005|New Venue Details|We\'ve got quite a few matches at <a href="/clubs/details/kendrick_girls_school.html">Kendrick Girls\' School</a> this season with both <em>Chiltern</em> and <em>North Reading</em> having their matches there.  A new badminton venue I think.  Also scanned a better map on the <a href="/clubs/details/cotswold_sports_centre.html">Cotswold Sports Centre</a> page, for the RMA next week.';

History[i++] = '14/11/2005|A hall suitable for Badminton|A page outlining the requirements for <a href="/info/sportshall.html">a good badminton venue</a>, that is according to the <abbr title="Badminton Association of England">BAofE</abbr>.';

History[i++] = '2/1/2006|New Venue Details|We went and played at the <a href="/clubs/details/meadway_sports_centre.html">Meadway Sports Centre</a> over Christmas 2005.  Although I don\'t know of any clubs who play there, it is a great venue, so I whacked up some info about the place.';

History[i++] = '4/1/2006|Photos in Reports!|Match reports that include photos are now indicated by the small camera icon [<img src="/img/minicam_anim.gif" width="9" height="8" border="0" alt="Includes Photos" title="Includes Photos" />] next to the report button or date on the <a href="/matches/fixtures.html">Fixtures</a>, <a href="/matches/results.html">Results</a> and <a href="/matches/reports.html">Reports</a> pages.';

History[i++] = '5/1/2006|Results back log!|Before you start wondering... have uploaded the <span class="info" title="Ok, its only four!">plethora</span> of results and reports (with some <b>PHOTOS</b>) left over from the end of last year - check out the list of recent <a href="/matches/results.html">results</a> on the <a href="/index.html">homepage</a>!';

History[i++] = '13/1/2006|Updated Venue Details|I\'ve still not been there myself, but in speaking to Marcus about <a href="/clubs/details/kendrick_girls_school.html">Kendrick School</a> I\'ve got a bit of a feel as to what it\'s like.';

History[i++] = '20/1/2006|Updated Venue Details|Minor tweak to the <a href="/clubs/details/rivermead_leisure_centre.html">Rivermead Leisure Centre</a> page. Got a photo of the inside of <a href="/clubs/details/woodford_park.html">Woodford Park</a> and put a page up with details of <a href="/clubs/details/bracknell_sports_centre.html">Bracknell Sports Centre</a>, with us going there on Tues 24th.';

History[i++] = '3/2/2006|Members Icons Updated|The little icons/avatars next to peoples names on the members page and elsewhere have been updated.';

History[i++] = '27/2/2006|Updated Venue Details|Minor tweak to the <a href="/clubs/details/hugh_faringdon_school.html">Hugh Faringdon School</a> page and added a photo of the inside of the hall. Updated a couple of the <a href="/members/members.html">members icons</a>.';

History[i++] = '9/3/2006|Updated Venue Details|Tweaked the <a href="/clubs/details/cotswold_sports_centre.html">Cotswold Sports Centre</a> page and added a photo of the inside of the hall.';

History[i++] = '19/3/2006|Updated Venue Details|Just another tweak to the <a href="/clubs/details/denefield_school.html">Denefield School</a> page and added a photo of the inside of the hall.';

History[i++] = '27/3/2006|Updated Venue Details|Updated the <a href="/clubs/details/castle_leisure_centre.html">Castle leisure Centre</a> page with the latest (and correct) information on how to get there, having been there myself for the first time just last week... and added a photo of the inside of the hall.';

History[i++] = '30/3/2006|New Feature - Who\'s Played|Added the new page, <a href="/members/whoplayed.php">Who\'s Played</a>. This lists out all the people who have played in matches this season, how many matches they have played in, and for which teams.|Also changed the way you select seasons.  You now simply select the season from the drop down box in the top right corner of the screen (available on pages which are linked to the database).  By default it will show the current season.  The season you pick will stay selected until you either select another season, or close your browser.  I have also updated the whole site to make it more <em>accessible</em>, with resizable fonts in all browsers.';

History[i++] = '3/4/2006|Updated Venue Details|Updated the <a href="/clubs/details/crosfields_school.html">Crosfields School</a> page with some info from the school itself on how to get across to the sports hall, whilst the <em>demolition</em> work is going on!  Also added a photo of the inside of the hall.';

History[i++] = '8/4/2006|Updated Venues|Updated the <a href="/clubs/details/kendrick_girls_school.html">Kendrick School</a> page and added a photo of the hall.  Also, venues for which there is a photo of the inside of the hall, are now indicated by a small camera icon [<img src="/img/minicam_anim.gif" width="9" height="8" border="0" alt="Venue page includes a photo of the hall" title="Venue page includes a photo of the hall" />] next to the venue name on the <a href="/clubs/venues.html">Venues page</a>.';

History[i++] = '23/4/2006|Updated Venue Details|Updated the <a href="/clubs/details/emmbrook_school.html">Emmbrook School</a> page and added a photo of the inside of the sports hall.  Also updated details of <a href="/clubs/details/woodford_park.html">Woodford Park</a>.';

History[i++] = '16/5/2006|New Guestbook!|The <a href="/guestbook/guestbook.php">Guestbook</a> has been completely revamped and rewritten to bring it into the style of the website.  You can <em>sign it</em>, write any comments you like, browse through the entries and search it.  Please <a href="/guestbook/guestbook.php">sign the Guestbook</a>, your comments are appreciated.';

History[i++] = '13/6/2006|New Contact Form|There is now a form on the <a href="/contact.php">Contact Page</a> that users can fill in to contact the club, instead of having to email directly.  This effectively emails <em>groups</em> of people in the club, based on what \'subject\' the user selects when completing the form.';

History[i++] = '7/9/2006|2006-2007 Seasons Fixtures!|All the <a href="/matches/fixtures.php">fixtures for the coming season</a> are now online!  You can print an up-to-date fixtures list direct from the website.  Or you can download a <a href="/download/fixtures.txt" title="Download a text only version of the unplayed match fixtures">text only version</a> or a <a href="/download/fixtures2006.doc" title="Download a Microsoft Word&trade; version of the complete seasons fixtures">Microsoft Word&trade; version of the seasons fixtures</a>.  <a href="/matches/teams.php">The Teams</a> are now up as well.';

History[i++] = '23/10/2006|Folded Clubs now removed|Clubs that are known to have <em>folded</em> in recent years are no longer included on the <a href="/clubs/clubs.html">clubs page</a> (thanks for pointing that out), or mentioned on the venues pages.  If you see any out of date info, then please <a href="/contact.php">contact the webmaster</a>.  A record of the club is still kept on the system, however, for the benefit of match results.';

History[i++] = '12/11/2006|Who\'s Played - Fixed|Sorted bug that was preventing the <a href="/members/whoplayed.php">Who\'s Played</a> page from displaying.';

History[i++] = '25/2/2007|Updated Venue Details|Updated the <a href="/clubs/details/wellington_college.html">Wellington College</a> page and added a photo of the inside of the sports hall.';

History[i++] = '30/4/2007|Latest League Positions|On the <a href="/matches/season.php?sid=0607">Season Info page</a> for the 2006/07 season.  As printed in the Reading Evening Post on 26th April 2007.  The season\'s almost over!';

History[i++] = '24/6/2007|General Site Update|The homepage has some <em>slightly</em> more recent <em>random</em> photos and updated the text as per Vics recommendation. Committee members updated as per the AGM.';

History[i++] = '28/9/2007|New Season - 2007/08|The site has now been updated with the 2007/08 <a href="/matches/teams.php" title="Teams for 2007/08?sid=0708">teams</a> and complete <a href="/matches/fixtures.php?sid=0708" title="Match fixtures for 2007/08">fixtures list</a>.';

History[i++] = '14/4/2008|New Season (at last!) - 2008/09|The site has been updated with all the <a href="/matches/fixtures.php?sid=0809" title="Match fixtures for 2008/09">2008/09 fixtures</a> and all the results I can lay my hands on! However, there\'s still some results missing, so if you see a blank and know the score then send it through! Pairings / rubber scores will suffice. Thanks.';

History[i++] = '20/8/2009|Ongoing... seasons fixtures - 2009/10|As a bit of a preview I\'ve started putting up some of this seasons new fixtures. The earliest will be Bracknell Ladies on Mon 14th Sept at Home. Still many more to go (38/70 done so far) and are subject to change. <a href="/matches/fixtures.php?sid=0910" title="Match fixtures for 2009/10">2009/10 Fixtures so far</a>.';

History[i++] = '3/9/2009|<a href="/matches/fixtures.php?sid=0910" title="Match fixtures for 2009/10">Fixtures 2009/10</a>|All the fixtures for 2009/2010 are now arranged and available for printing/download straight off the website.';
