function openfull(page){
   var newwin = window.open(page,"",'fullscreen=yes,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=' + screen.width + ',height=' + screen.height);
   newwin.moveTo(0,0);newwin.focus();
}


function NewsCentrer(page) {
  var largeur=400;
  var hauteur=400;
  var options="scrollbars=1";
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  var tmp=window.open(page,"map","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
  tmp.focus();
}

function closeme(){
	top.window.close();
}

function OpenCentrer(page,where,largeur,hauteur,options) {
  if (options=="")
     var options="scrollbars=0";
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  var tmp=window.open(page,where,"top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
  tmp.focus();
}
