function emaillink() {
	var domain = "alexandrajones.co.uk";
	var user = "alex";
	var at = "@";
	document.write("<a href='mailto:");
	document.write(user + at + domain);
	document.write("'>");
	document.write(user + at + domain);
	document.write("</a>");
}

function sendmail() {
	var successfn = function(o) {
		alert(o.responseText);
		document.forms[0].reset();
	}
	
	var failurefn = function(o) {
		alert("Sorry, but a problem was encountered when trying to send the message, please try again in a short while.");
	}
	
	var callback = {
		success: successfn,
		failure: failurefn
	}
	YAHOO.util.Connect.setForm(document.getElementById('contactform'));  
	var cObj = YAHOO.util.Connect.asyncRequest('POST', './verify.php', callback);  
}