﻿///////////////////////////////////////////////////

//non-crawlable email addresses.

function sendmail(recipient) {
var name, domain, suffix;

if (recipient == 'chris') {
name = 'mail';
domain = 'chrisvincze';
suffix = 'info';
}

if (recipient == 'wendy') {
name = 'evol';
domain = 'kubista';
suffix = 'co.uk';
}

if (recipient == 'dawn'){
name = 'dawn';
domain = 'dazzlefilms';
suffix = 'co.uk';
}

var mailLink = 'mailto:' + name + '@' + domain + '.' + suffix
parent.location = mailLink;
}

