function mailit(name,domain) {status="mailto:" + name + "@" + domain;locationstring = "mailto:" + name + "@" + domain;window.location = locationstring;}/* <a href="javascript:mailit('caa','oricom.ca?subject=Information')">caa&nbsp;&#64;&nbsp;oricom.ca</a> */if (document.images) {accueil_mo = new Imageaccueil_mo.src = "images/accueil_mo.jpg" accueil_ac = new Imageaccueil_ac.src = "images/accueil_mo.jpg"accueil_rt = new Imageaccueil_rt.src = "images/accueil.jpg"contact_mo = new Imagecontact_mo.src = "images/contact_mo.jpg" contact_ac = new Imagecontact_ac.src = "images/contact_mo.jpg"contact_rt = new Imagecontact_rt.src = "images/contact.jpg"dons_mo = new Imagedons_mo.src = "images/dons_mo.jpg" dons_ac = new Imagedons_ac.src = "images/dons_mo.jpg"dons_rt = new Imagedons_rt.src = "images/dons.jpg"bulletin_mo = new Imagebulletin_mo.src = "images/bulletin_mo.jpg" bulletin_ac = new Imagebulletin_ac.src = "images/bulletin_mo.jpg"bulletin_rt = new Imagebulletin_rt.src = "images/bulletin.jpg"presentation_mo = new Imagepresentation_mo.src = "images/presentation_mo.jpg" presentation_ac = new Imagepresentation_ac.src = "images/presentation_mo.jpg"presentation_rt = new Imagepresentation_rt.src = "images/presentation.jpg"actserv_mo = new Imageactserv_mo.src = "images/actserv_mo.jpg" actserv_ac = new Imageactserv_ac.src = "images/actserv_mo.jpg"actserv_rt = new Imageactserv_rt.src = "images/actserv.jpg"doculiens_mo = new Imagedoculiens_mo.src = "images/doculiens_mo.jpg" doculiens_ac = new Imagedoculiens_ac.src = "images/doculiens_mo.jpg"doculiens_rt = new Imagedoculiens_rt.src = "images/doculiens.jpg"tempress_mo = new Imagetempress_mo.src = "images/tempress_mo.jpg" tempress_ac = new Imagetempress_ac.src = "images/tempress_mo.jpg"tempress_rt = new Imagetempress_rt.src = "images/tempress.jpg"}else {document.accueil = ""accueil_mo = ""accueil_ac = ""accueil_rt = ""document.contact = ""contact_mo = ""contact_ac = ""contact_rt = ""document.dons = ""dons_mo = ""dons_ac = ""dons_rt = ""document.bulletin = ""bulletin_mo = ""bulletin_ac = ""bulletin_rt = ""document.presentation = ""presentation_mo = ""presentation_ac = ""presentation_rt = ""document.actserv = ""actserv_mo = ""actserv_ac = ""actserv_rt = ""document.doculiens = ""doculiens_mo = ""doculiens_ac = ""doculiens_rt = ""document.tempress = ""tempress_mo = ""tempress_ac = ""tempress_rt = ""}/*   -------------------------------   *//* showhide.js - http://www.howtocreate.co.uk/jslibs/  *//* var myalternative = "LOCATION OF ALTERNATIVE PAGE, JUST IN CASE THEIR BROWSER DOESN'T GET IT RIGHT";  */window.onerror = null;      //initialise all variablesvar olddiv = 0;   //this will become a reference to the object that is being shown or was last shown; in all cases, the object that is shown/hidden will be a <div ..> elementfunction getRefToDivNest( divID, oDoc ) {	if( !oDoc ) { oDoc = document; }	if( document.layers ) {		if( oDoc.layers[divID] ) { return oDoc.layers[divID]; } else {			for( var x = 0, y; !y && x < oDoc.layers.length; x++ ) {				y = getRefToDivNest(divID,oDoc.layers[x].document); }			return y; } }	if( document.getElementById ) { return document.getElementById(divID); }	if( document.all ) { return document.all[divID]; }	return document[divID];}function showdiv(thisdiv) {	hidediv(); //this function shows the div; first, hide the last one; convert the name of the div into a reference to it. Basically, get a reference to the object	olddiv = getRefToDivNest(thisdiv);	if( !olddiv ) {		notifyFail();  //Nothing found. This browser is not compliant with any!		return;	}	if( olddiv.style ) {  //Make the object visible				olddiv.style.visibility = 'visible';  //DOM compliant	} else {		if( olddiv.visibility ) {			olddiv.visibility = 'show';  //Netscape and old versions of Mozilla compliant		} else {			notifyFail();  //Nothing found, no known way of changing the style			return;		}	}	divshown = 1;}function hidediv() {	if( olddiv ) {		if( olddiv.style ) {  //DOM compliant			olddiv.style.visibility = 'hidden';		} else {  //Netscape and old versions of Mozilla compliant			olddiv.visibility = 'hide';		}  //No need for else notifyFail(); if it was going to fail, it would have failed while it was being shown	}	olddiv = false;}function notifyFail() {  //oops, I guess nothing works in this browser	if( window.myalternative ) {		if( window.confirm( "You are having problems displaying some components of this page.\n"+			"\nWould you like to try the other page design?" ) ) { location.href = myalternative; }	} else {		window.alert( "You are having problems displaying some components of this page.\n\n"+			"Sorry, but there is not yet an alternative page." );	}}/* 	fminit(); *//* 	 *//* 	fmreset(); *//* 	 *//*  *//* To show a div, put: *//* onmouseover="showdiv('calque1')" onmouseout="hidediv('calque1')"> *//* utiliser ce code avec balise <a href É> EXEMPLE : <a onmouseover="showdiv('calque1')" onmouseout="hidediv('calque1')"><img src="images/portfolio.jpg" name="portfolio" alt="" name="portfolio" width="230" height="22" border="0"></a> et dans les balises <div> EXEMPLE : <div id="calque1" onmouseover="showdiv('calque1')" onmouseout="hidediv('calque1')">  *//* Pour les liens individuels menant aux pages, les traiter comme des liens ordinaires dans un objet inclus dans le <div>. *//*   -------------------------------   */