// location=yes/no : affiche ou non la barre d'adresse, 
// toolbar=yes/no : affiche ou non la barre de boutons, 
// directories=yes/no : affiche ou non la barre de boutons 'Nouveautes'..., 
// menubar=yes/no : affiche ou non la barre des menus (Fichier, Edition...), 
// resizable=yes/no : permet ou non le redimensionnement de la fenetre, 
// screenX= : placement de la fenetre en abcisse, 
// screenY= : placement de la fenetre en ordonnee, 
// scrollbars=yes/no : affiche ou non les ascenceurs, 
// status=yes/no : affiche ou non la barre d'etat, 
// width : donne la largeur de la fenetre en pixels, 
// height : donne la hauteur de la fenetre en pixels.

// fonction utilisable pour plusieurs fichiers dans la meme fenetre 'popup'
function popup(adresse){
	window.open(adresse,'nom_de_la_fenetre','location=no,toolbar=no,directories=no,menubar=no,resizable=no,scrollbars=yes,status=no,width=400,height=400,screenY=100,screenX=100');
}

function popup400x200(adresse){
	window.open(adresse,'nom_de_la_fenetre','location=no,toolbar=no,directories=no,menubar=no,resizable=no,scrollbars=yes,status=no,width=400,height=200,screenY=200,screenX=200');
}

function popup400x260(adresse){
	window.open(adresse,'nom_de_la_fenetre','location=no,toolbar=no,directories=no,menubar=no,resizable=no,scrollbars=yes,status=no,width=400,height=260,screenY=screen.height-400/2,screenX=screen.width-260/2');
}

function popup800(adresse){
	window.open(adresse,'nom_de_la_fenetre','location=no,toolbar=no,directories=no,menubar=no,resizable=no,scrollbars=yes,status=no,width=800,height=400,screenY=100,screenX=100');
}

function popupPW(adresse){
	window.open(adresse,'nom_de_la_fenetre','location=no,toolbar=no,directories=no,menubar=no,resizable=no,scrollbars=no,status=no,width=400,height=200,screenY=100,screenX=100');
}
function centrePop(url,largeur,hauteur) { // centre le PopUp sur l'écran
      var gauche = (screen.width - largeur)/2
      var haut =  (screen.height - hauteur)/2
      window.open(url,'','location=no,toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,status=no,width='+largeur+',height='+hauteur+',left='+gauche+',top='+haut)
}
function centrePopW(url,largeur,hauteur) { // centre le PopUp sur l'écran
      var gauche = (screen.width - largeur)/2
      var haut =  (screen.height - hauteur)/2
      window.open(url,'','location=yes,toolbar=yes,directories=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,width='+largeur+',height='+hauteur+',left='+gauche+',top='+haut)
}
function MaxPopup(adresse){
	window.open(adresse,'Gestion médical','location=no,toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,width=400,height=400,screenY=100,screenX=100');
}
function HautBrowser(haut,mb,doc){
	var haut=haut;
	if (document.body)
	   {
	   var haut = (document.body.clientHeight);
	   } 
	else
	   {
	   var haut = (window.innerHeight);
	   }
	   haut = haut-mb;
	if(haut==0){haut=300;}
	document.getElementById(doc).height=haut;
	document.body.style.overflow='hidden';
}
function HautBrowser1(haut,mb,doc){
	var haut=haut;
	if (document.body)
	   {
	   var haut = (document.body.clientHeight);
	   } 
	else
	   {
	   var haut = (window.innerHeight);
	   }
	   haut = haut-mb;
	if(haut==0){haut=300;}
	document.getElementById(doc).height=haut;
	document.body.style.overflow='hidden';
}


