function movepied()
{
	p = document.getElementById("pied");
	if (p.offsetHeight!=null)
	{		
		c = document.getElementById("centre");
		d = document.getElementById("droite");
		g = document.getElementById("gauche");
		minheight = Math.max(c.offsetTop + c.offsetHeight, d.offsetTop + d.offsetHeight, g.offsetTop + g.offsetHeight);
		if (minheight!=c.offsetTop + c.offsetHeight)
		{
			c.style.height = ((minheight-g.offsetTop)-15)+"px";
		}
		else
		{
			d.style.height = ((p.offsetTop-d.offsetTop)-15)+"px";
		}
	}
}

function OpenPopDownList(href)
{
	window.open(href,'choixlist','height=220,width=520');
	return false;
}

function OpenPopPerso(href)
{
	window.open(href,'choixperso','height=330,width=410');
	return false;
}

function ConfirmBox(Titre)
{
	return (confirm(Titre));
}

function SelectRadio(id)
{
	document.getElementById(id).checked = true;
}

function Blink(id,speed)
{
	e = document.getElementById(id)
	e.style.visibility = (e.style.visibility = 'hidden') ? 'visible' : 'hidden';
}

window.onload = function()
{
movepied();
InitScroll();
InitPopup();
//setInterval(Blink(id,5000);',speed);
}
window.resize = function() {movepied();}