function fullmode(theURL,winName,features) {
  fullscreen=window.open(theURL,winName,features);
}

function PleinEcran(page,options) {
var hauteur = screen.height;
var largeur = screen.width;
window.open(page,"","top=0,left=0,width="+largeur+",height="+hauteur+","+options);
}
