/* auteur: Gbillou [n-Gen] */
/* Date de création: 04/12/2003 */

function Show(div,over) {
if (over !="") {
document.getElementById(div).style.visibility="visible";
} else {
document.getElementById(div).style.visibility="hidden";
}}
function ClubsConcernes(div,over)
{

if (over !="") {



/*for (var j=0; j<total2.length; j++) {

var tag2 = total2[j];

tag2.style.visibility="hidden";
tag2.style.backgroundColor="#FFFFFF";

}*/


var total = document.getElementsByName(div);

for (var i=0; i<total.length; i++) {
var tag = total[i];
tag.style.visibility="visible";

div_glob = div;

}

} else {

var total2 = document.getElementsByName(div);

for (var i=0; i<total2.length; i++) {

var tag = total2[i];

tag.style.visibility="hidden";

}

}

}

function changefont(div,over,url) {


var e = document.getElementById(div);
var u = document.getElementById(url);

if (over!="") {
e.style.backgroundColor="#FFFFFF";
e.style.color="#A50D12";
u.style.color="#A50D12";


} else {
e.style.backgroundColor="#A50D12";
e.style.color="#FFFFFF";
u.style.color="#FFFFFF";
}
}

function RollOverMenu(div) {

if (document.getElementbyId) {

document.getElementById(div).style.visibility="hidden";}
}

function openWindow(url,pop_width,pop_height,options) 
{
	//*************************************************//
	//      CALCULATE CENTER OF WINDOW FOR POPUP	   //
	//*************************************************//
	var winleft = (screen.width - pop_width) / 2;
	var winUp = (screen.height - pop_height) / 2;

	alloptions = 'width='+pop_width+',height='+pop_height+',left='+winleft+',top='+winUp+','+options;

	win = window.open(url,'',alloptions);
}