/* ========= addEvent: simplified event attachment ========= */
 	function addEvent(elm, evType, fn, useCapture) {
	if (elm.addEventListener) {
	elm.addEventListener(evType, fn, useCapture);
	return true;
	}
	else if (elm.attachEvent) {
	var r = elm.attachEvent('on' + evType, fn);
	return r;
 	}
	else {
 	elm['on' + evType] = fn;
	}
	}
/* ========= ElegantFrameKiller =========*/
 	function ElegantFrameKiller() {
	if (top != self) {
 var i, a = document.getElementsByTagName('a');
for(i=0;i < a.length;i++) {
a[i].target='_blank';
//a[i].title='Ouvre une nouvelle fenêtre';
}
 }
	}
 /* ========= Lance la fonction ElegantFrameKiller au chargement de la page =========*/
addEvent(window,'load',ElegantFrameKiller);
