/* Resize window */

self.moveTo(0,0);
self.resizeTo(screen.availWidth,screen.availHeight);

/* Inscription Carpe Diem */
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();
	}
}

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