
function doEmail( linkname )
{
  var domain = "madsally";
	var tld = ".co.uk";
	var name = "postmaster";
	
	document.write( "<A HREF='mailto:" );
	document.write( name + "@" + domain + tld + "'>");
	document.write( linkname );
	document.write( "</A>" );
}
