function openCoureur(dossard) {
	newwindow=window.open ("","coureur",'top=10,left=10,width=500,height=350,toolbar=0,location=0,scrollbars=1,resizable=1');
	if (window.focus) {newwindow.focus()}
	return false;
}
function openChronoTimes() {
	newwindow=window.open ("","chronoTimes",'toolbar=0,location=0,scrollbars=1,width=600,height=500,resizable=1');
	if (window.focus) {newwindow.focus()}
	return false;
}
function openCompetitorTimes() {
	newwindow=window.open ("","competitorTimes",'toolbar=0,location=0,scrollbars=1,width=500,height=350,resizable=1');
	if (window.focus) {newwindow.focus()}
	return false;
}
window.onload=montre;
function montre(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
}
