// JavaScript Document
var dWindow=null;
function noPourriel(before) {	
var eMail=before+"@campmusicallanaudiere.com";
if((dWindow==null)||(dWindow.closed)) {
	dWindow=window.open("mailto:" + eMail, "mailWindow", 
		"menubar=no,dependent=yes,height=60,width=300");
	var ligneHead=
		  '<HTML><HEAD><TITLE>Courriel pour '
		+ eMail
		+ '</TITLE></HEAD>'							+ String.fromCharCode(13);
	var ligneBody=
		  '<BODY bgcolor="#173A4F">'					+ String.fromCharCode(13)
		+ '<Font Face="Arial" Size="3" Color="#FFFFFF">'	+ String.fromCharCode(13)
		+ 'Syst&egrave;me anti-pourriel / Anti-spam system <br>Ouverture de votre application courriel...<br>Opening your email software...'				+ String.fromCharCode(13)
		+ '</font><br><br>'
		+ '<Font Face=arial Size=1 Color="#FFFFFF">'			+ String.fromCharCode(13)
		+ "&copy; intrigmedia.com, distribu&eacute; sous GNU-GPL<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();",6000); // pour eviter le crash
	}
}
