// ouverture d'une fenêtre version "accessible"
function OpenWindowByTarget(target, url, width, height, top, left) {
	var wdw;
	var options = "status=yes,location=yes,menubar=yes,toolbar=yes,resizable=yes,scrollbars=yes";
	wdw = window.open(url, target, "top="+top+",left="+left+",width="+width+",height="+height+","+options);
	wdw.focus();
	return false;
}
