// @author: Neilson Proulx-Marcil neilson.marcil@gmail.com

function montrerElement(nom) {
	document.getElementById(nom).style.display = "block";
}

function cacherElement(nom) {
	document.getElementById(nom).style.display = "none";
}

function detectBrowser() {
    return navigator.appCodeName;
}

function loadCSS() {
    
}
