var dWindow=null;

function emailto(before,after) {	
var eMail=before+"@"+after;
if((dWindow==null)||(dWindow.closed)) {
	dWindow=window.open("mailto:" + eMail, "mailWindow", 
		"menubar=no,dependent=yes,height=50,width=260");
	var ligneHead=
		  '<HTML><HEAD><TITLE>e-mail to '
		+ eMail
		+ '</TITLE></HEAD>'							+ String.fromCharCode(13);
	var ligneBody=
		  '<BODY bgcolor="#102A98">'					+ String.fromCharCode(13)
		+ '<Font Face="Comic Sans MS" Size="3" Color="#FFFFFF">'	+ String.fromCharCode(13)
		+ 'Loading your<br>e-mail application...'				+ String.fromCharCode(13)
		+ '</font><br><br>'
		+ '<Font Face=arial Size=1 Color="#FFFFFF">'			+ String.fromCharCode(13)
		+ "&copy; Jean-Luc HARDY, distributed under GNU-GPL<br>"	+ String.fromCharCode(13)
//		+ "download: http://noSpamMailto.sourceforge.net<br>"		+ String.fromCharCode(13)
		+ '</font></BODY></HTML>'						+ String.fromCharCode(13);
	dWindow.document.writeln(ligneHead);
	dWindow.document.writeln(ligneBody);
	dWindow.document.writeln();
	var timerAvantClose= setTimeout("dWindow.close();",5000); // pour eviter le crash
	}
}

function unscramble(mycompany2,mycompany3,mycompany1) {
	return mycompany1+mycompany2;}


