// Programme list for Staines Folk and Blues Club

// The optional first data line is a newsflash. 
// If present it should be in the format - newsflash("xxx") - where xxx is the newsflash text.
// The newsflash may contain html tags but, if so, attribute values must be surrounded by single quotes.
// If a newsflash is not required the newsflash line may be omitted or be present as - newsflash("").

// Each tableEntry line is used to describe one line of the programme table.
// There are three parameters - each enclosed in double quotes:
  // Date in dd/mm/yyyy format.
  // Description of club night which should be one of "Singaround", "Singer's Night", "Club Closed" or name of guest.
  // URL of guest's website (if any).

// Each guest entry may be followed by entryDescription lines which can be used to provide a brief description of the guest(s).
// The entryDescription line(s) contain(s) the description between double quotes.
// Several entryDescription lines can be included, if required, depending on the length of the description.

newsflash("The Licensing Bill received Royal Assent on July 10, 2003. Further information is available in <a href='http://www.number-10.gov.uk/output/Page4259.asp' target='_top'>the government's response to the e-petition</a> and <a href='http://www.musiciansunion.org.uk/articles/latest_news.shtml' target='_top'>the Musicians' Union assessment of the Bill</a>.")

tableEntry("02/08/2004", "Singaround","")
tableEntry("09/08/2004", "Singaround","")
tableEntry("16/08/2004", "The Tippens","")
  entryDescription("Our very own family of musical wizards. Not an evening to miss","") 
tableEntry("23/08/2004", "Singaround","")
tableEntry("30/08/2004", "singaround","")
tableEntry("06/09/2004", "George Papavgeris","")
  entryDescription("A welcome return to Staines","") 
tableEntry("13/09/2004", "Singaround","")
tableEntry("20/09/2004", "Singaround","")
tableEntry("27/09/2004", "Singaround","")

