<!--
// POPUP page accueil
function popopen(id_compete){
var pop = document.getElementById('pop');
if (pop) {
pop.style.display = 'block';
pop.style.visibility = 'visible';}
setTimeout('popclose()',20000000);
}
function popclose(){
var pop = document.getElementById('pop');
if (pop) {pop.style.display = 'none';pop.style.visibility = 'hidden';}
}
window.onload=popopen;

// Print
function print(URL) {
window.open(URL,'Imprimer','width=640,height=280,menubar=yes,scrollbars=yes,toolbar=no,location=no,status=no,resizable=yes');
}

// Affichage
function affichage(URL) {
window.open(URL,'Imprimer','width=740,height=400,menubar=yes,scrollbars=yes,toolbar=no,location=no,status=no,resizable=yes');
}

// photos
function photos(URL) {
window.open(URL,'Visualiser','width=440,height=500,menubar=yes,scrollbars=yes,toolbar=no,location=no,status=no,resizable=yes');
}

// commentaires breves
function commentaire(URL) {
window.open(URL,'Imprimer','width=300,height=550,menubar=no,scrollbars=yes,toolbar=no,location=no,status=no,resizable=yes');
}
// podium tournoi
function tournoi(URL) {
window.open(URL,'Visualiser','width=900,height=600,menubar=yes,scrollbars=yes,toolbar=yes,location=no,status=no,resizable=yes');
}

//-->

