<!--
// generic e-mail functions (madphoto.co.uk)
// M.Adams
// 11/03/10

// this function designed to beat the spammers
function sendmail()
{
  recipient = "info";
  recipient = recipient+"@"+"madphoto.co.uk";
  subject = "Enquiry (madphoto.co.uk)";
  parent.location.href='mailto:'+recipient+'?subject='+subject;
}

//-->

