// Email Encoder

function emaillink(name)

{

	// The following lines are for domain and extension - change if needed

	var domain = 'ledaserene';
	var ext = '.com'; 

	// The following lines are for seperating the 'mailto:' line - do not change

	var first = 'ma';
	var second = 'il';
	var third = 'to:';

	// The following line declares the variable according argument of the function

	var address = name;

	// The following lines write the link
	
	document.write('<a href="');
	document.write(first+second+third);
	document.write(address);
	document.write('&#64;');
	document.write(domain);
	document.write(ext);  
	document.write('">');
   	document.write('Email'); 
	document.write('</a>');

}