function EventObj(Title, StartDate, Company, Venue, Price, Link) {
  this.title = Title;
  this.startdate = StartDate;
  this.company = Company;
  this.venue = Venue;
  this.price = Price;
  this.link = Link;
}
document.writeln('<font face="Verdana, Arial" size="2" color="#000000">');document.writeln('<p>Found 12 event/s in Exeter...</p>');
var events = [];
events[0] = new EventObj('Speed Dating', 'Wed 11th August', 'Slow Dating', 'Starz Bar', '22.00', 'http://scripts.affiliatefuture.com/AFClick.asp?affiliateID=117114&merchantID=359&programmeID=1267&mediaID=0&tracking=&url=http://www.slowdating.com/speed-dating/Exeter/102575.aspx?external=true');
events[1] = new EventObj('Speed Dating', 'Wed 25th August', 'Slow Dating', 'Starz Bar', '20.00', 'http://scripts.affiliatefuture.com/AFClick.asp?affiliateID=117114&merchantID=359&programmeID=1267&mediaID=0&tracking=&url=http://www.slowdating.com/speed-dating/Exeter/102576.aspx?external=true');
events[2] = new EventObj('Speed Dating', 'Thu 26th August', 'When the Music Stops', 'Pitcher and Piano', '25.00', 'http://www.whenthemusicstops.com/speeddating.php?id=4149&aff=datingtrail');
events[3] = new EventObj('Speed Dating', 'Thu 9th September', 'When the Music Stops', 'Pitcher and Piano', '16.00', 'http://www.whenthemusicstops.com/speeddating.php?id=4151&aff=datingtrail');
events[4] = new EventObj('Speed Dating', 'Wed 15th September', 'Slow Dating', 'Starz Bar', '20.00', 'http://scripts.affiliatefuture.com/AFClick.asp?affiliateID=117114&merchantID=359&programmeID=1267&mediaID=0&tracking=&url=http://www.slowdating.com/speed-dating/Exeter/102695.aspx?external=true');
events[5] = new EventObj('Speed Dating', 'Thu 23rd September', 'When the Music Stops', 'Pitcher and Piano', '16.00', 'http://www.whenthemusicstops.com/speeddating.php?id=4152&aff=datingtrail');
events[6] = new EventObj('Speed Dating', 'Thu 7th October', 'When the Music Stops', 'Pitcher and Piano', '16.00', 'http://www.whenthemusicstops.com/speeddating.php?id=4153&aff=datingtrail');
events[7] = new EventObj('Speed Dating', 'Wed 13th October', 'Slow Dating', 'Starz Bar', '20.00', 'http://scripts.affiliatefuture.com/AFClick.asp?affiliateID=117114&merchantID=359&programmeID=1267&mediaID=0&tracking=&url=http://www.slowdating.com/speed-dating/Exeter/102696.aspx?external=true');
events[8] = new EventObj('Speed Dating', 'Wed 3rd November', 'Slow Dating', 'Starz Bar', '20.00', 'http://scripts.affiliatefuture.com/AFClick.asp?affiliateID=117114&merchantID=359&programmeID=1267&mediaID=0&tracking=&url=http://www.slowdating.com/speed-dating/Exeter/102697.aspx?external=true');
events[9] = new EventObj('Speed Dating', 'Thu 4th November', 'When the Music Stops', 'Pitcher and Piano', '16.00', 'http://www.whenthemusicstops.com/speeddating.php?id=4154&aff=datingtrail');
events[10] = new EventObj('Speed Dating', 'Thu 18th November', 'When the Music Stops', 'Pitcher and Piano', '16.00', 'http://www.whenthemusicstops.com/speeddating.php?id=4155&aff=datingtrail');
events[11] = new EventObj('Speed Dating', 'Thu 2nd December', 'When the Music Stops', 'Pitcher and Piano', '16.00', 'http://www.whenthemusicstops.com/speeddating.php?id=4156&aff=datingtrail');
document.writeln('<table width="100%">');
document.writeln('<thead>');
document.writeln('<tr>');
document.writeln('<th align="left"><font face="Verdana, Arial" size="1" color="#000000">Date</font></td>');
document.writeln('<th align="left"><font face="Verdana, Arial" size="1" color="#000000">Event type</font></td>');
document.writeln('<th align="left"><font face="Verdana, Arial" size="1" color="#000000">Venue</font></td>');
document.writeln('<th align="right"><font face="Verdana, Arial" size="1" color="#000000">Price</font></td>');
document.writeln('<th> </td>');
document.writeln('</tr>');
document.writeln('</thead>');
document.writeln('<tbody>');

for (x=0; x<12; x++) 
{ 


  document.writeln('<tr onMouseOver="style.backgroundColor=\'#C0C0C0\'" onMouseOut="style.backgroundColor=\'\'" style="cursor:hand" onClick="document.location.href=\'' + events[x].link + '\'">');
  document.writeln('<td align="left"><font face="Verdana, Arial" size="2" color="#000000">' + events[x].startdate + '</font></td>');
  document.writeln('<td align="left"><font face="Verdana, Arial" size="2" color="#000000">' + events[x].title + '</font></td>');
  document.writeln('<td align="left"><font face="Verdana, Arial" size="2" color="#000000">' + events[x].venue + '</font></td>');
  document.writeln('<td align="right"><font face="Verdana, Arial" size="2" color="#000000">£' + events[x].price + '</font></td>');
  document.writeln('<td align="right"><font face="Verdana, Arial" size="2" color="blue"><a href="' + events[x].link + '" target="_blank" title="Click here for more information" style="color: #800000"><strong>More Info / Book</strong></a></font></td>');
  document.writeln('</tr>');
} 

document.writeln('</tbody>');
document.writeln('</table>');
document.writeln('</font>');