<!--
// generic e-mail functions (smallbattles.co.uk)
// M.Adams
// 30/10/04

// this function designed to beat the spammers
function sendmail()
{
  recipient = "mike";
  recipient = recipient+"@"+"smallbattles.co.uk";
  subject = "Web feedback! (smallbattles.co.uk)";
  parent.location.href='mailto:'+recipient+'?subject='+subject;
}

//-->
