/*------------------------------------------------
|             Clair et Net. © 2007                |
--------------------------------------------------*/


//PATCH getEelementById
if (!document.getElementById) {
	if (document.all)
		document.getElementById=function() {
		if ( typeof(document.all[arguments[0]]) != "undefined")
			return document.all[arguments[0]];
		else
			return null;
		}
	else if (document.layers)
		document.getElementById=function() {
			if ( typeof(document[arguments[0]]) != "undefined")
				return document[arguments[0]];
			else
				return null;
	}
}


function PopUp(url,largeur,hauteur,option) {
	if(!option){
		option="toolbar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0,menubar=0";
	}
	t=(window.screen.height-hauteur)/2;
	l=(window.screen.width-largeur)/2;
	window.open(url, "MC", "top="+t+",left="+l+",width="+largeur+",height="+hauteur+","+option);
}
