
	var first = 'ma';
	var second = 'il';
	var third = 'to:';
	var address = 'info';
	var domain = 'pinkrabbits';
	var ext = 'co.uk'; 
	document.write('<a href="');
	document.write(first+second+third);
	document.write(address);
	document.write('&#64;');
	document.write(domain);
	document.write('.');
	document.write(ext);
	document.write('">'); 
	document.write('info</a>');