function favoris() {
if ( navigator.appName != 'Microsoft Internet Explorer' )
{ window.sidebar.addPanel("3x Black", "http://www.3xblack.com/",""); }
else { window.external.AddFavorite("http://www.3xblack.com/","3x Black"); } }




function writediv(iddiv,texte) {
	document.getElementById(iddiv).innerHTML = texte;
}

//===== Popup Centree =====//
var win=null;
function openfenetre(mypage,myname){
	/*if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-60)):100;}
	if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
	else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
	*/
	/*\'+screen.availWidth+\',\'+screen.availHeight+\',0,\'center\'*/
	LeftPosition=0;
	TopPosition=20;
	w=800;
	h=screen.availHeight;
	settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes';
	win=window.open(mypage,myname,settings);
}


function visibilite(thingId)
{
var targetElement;
targetElement = document.getElementById(thingId) ;
if (targetElement.style.display == "none")
{
targetElement.style.display = "" ;
} else {
targetElement.style.display = "none" ;
}
}