// JavaScript Document
/*
menu
*/

function initHide(id)
{
	document.getElementById(id).style.display = "none";
}

hideId = "";

function hideShow(id)
{
	document.getElementById(id).style.display = "block";
	if(hideId)
	{
		document.getElementById(hideId).style.display = "none";
	}
	if(hideId != id)
	{
		hideId = id;
	} else {
		hideId = "";
	}
}



/*
popup de ouf avec baccata
http://www.baccata.net
*/

function LaunchWin4 (url, largeur, hauteur, options)
{
	var x=(screen.width-largeur)/2;
	var y=(screen.height-hauteur)/2;
	
	myTest = window.open(url,'','top='+y+',left='+x+',width='+largeur+',height='+hauteur+',' +options);
	
	if (!myTest) 
	{
		alert("Veuillez désactiver votre anti-popup");
	} else {
		myTest.focus();
	}
}
