// All instructions begin with // like this line
// DO NOT ALTER THE THREE LINES BELOW

contactName = new Array();
contactPosition = new Array();
contactEmail = new Array();

// Add and remove contacts from the list below.
// Contacts must be numbered sequentially, starting with 0.

contactName[0] = "Don Whitley";
contactPosition[0] = "Chairman";
contactEmail[0] = "Chairman@yorkshire-monochrome.org.uk";

contactName[1] = "Pat Holmes";
contactPosition[1] = "Secretary";
contactEmail[1] = "secretary@yorkshire-monochrome.org.uk";

contactName[2] = "Robert Mawer";
contactPosition[2] = "Treasurer";
contactEmail[2] = "treasurer@yorkshire-monochrome.org.uk";

contactName[3] = "Andrew Rothery";
contactPosition[3] = "Convenor";
contactEmail[3] = "convenor@yorkshire-monochrome.org.uk";

contactName[4] = "Comments about this site";
contactPosition[4] = "Webmaster";
contactEmail[4] = "webmaster@yorkshire-monochrome.org.uk";



// If you add a new @yorkshire-monochrome.org.uk address, 
// remember to add mail forwarding at www.freeparking.co.uk.

