function contactMe() {
	aro = "@";
	x = "jean";
	y = "lazarou";
	z = "alef1.org";
	url = "mailto";
	url += ":";
	url += x;
	url += ".";
	url += y;
	x = z + "?subject=[jlaz] ";
	window.location.href = url + aro + x;
}
function writeContactMe() {
	document.write("<h2>Contact</h2>");
	document.write("Drop me a <a href='javascript:contactMe()'>mail</a>, ");
	document.write("start the mail subject with [jlaz].");
}
