// Pop inscription CD :
function pop(url)	{
	var left = (screen.width/2)-240; // On retire la moitié de 'width'
	var top = (screen.height/2)-185; // On retire la moitié de 'height'
	mp = window.open(url,'mp','statutbar=no, width=480, height=370, left='+left+', top='+top+', menubar=no, resize=yes, scrollbars=yes');
	if (mp && mp.focus)	{ mp.focus(); }
}

// Favoris :
function bookmarksite(title, url)	{
	if (document.all)			window.external.AddFavorite(url, title);
	else if (window.sidebar)	window.sidebar.addPanel(title, url, "")
}

/* By by the div : */
var trucmuche="non";
function getElementStyle(id)	{ return document.getElementById(id).style; }
function ByeByeTheDiv(id)		{ getElementStyle(id).display=trucmuche+"e"; }
