// JavaScript Document

function writeEmail(id) {
	
	var email = 'mail to: <a href="mai';
	email += 'lto:alan';
	email += '@make';
	email += 'hello.c';
	email += 'om">alan';
	email += '@make'
	email += 'hello.com</a>'
	$("#"+id).html(email);
	//alert('test:\n'+email);
}