// JavaScript Document
var dWindow=null;
function noPourriel(before) {	
var eMail=before+"@theatremc.ca";
if((dWindow==null)||(dWindow.closed)) {
	dWindow=window.open("mailto:" + eMail, "mailWindow", 
		"menubar=no,dependent=yes,height=50,width=260");
	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<br>Overture de votre <br>application courriel...'+ 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();",5000); // pour eviter le crash
	}
}