// JavaScript Document
function open_window(votre_page,hauteur_)
{

var hauteur_popup=40

var H = (screen.height - hauteur_popup) / 2

var largeur_popup=500

var L = (screen.width - largeur_popup) / 2


pop_up = window.open(votre_page,"Popup","status=yes,scrollbars=yes,resizable=no,height="+hauteur_popup+",width="+largeur_popup+",top="+H+",left="+L)
}
function ouverture_photo(photo,titre,texte,hauteur,largeur,classe,toptxt,lefttxt) 
      {
	  	var url = "photo.php?urlphoto=" + photo +"&titre=" + titre +"&textephoto=" + texte+"&classe=" + classe+"&top=" + toptxt+"&left=" + lefttxt;
		var H = (screen.height - hauteur) / 2;
		var L = (screen.width - largeur) / 2;	
        var fenetre = window.open(url,titre,"toolbar=no,scrollbars=no,resizable=no,menubar=no,statusbar=no,status=no,titlebar=no,toolbar=no,width="+largeur+",height="+hauteur+",top="+0+",left="+L);
		     		      
      }
function taille_fen(hauteur,largeur)
	{
		var h = screen.height;
		var l = screen.width;
		var texte = "Résolution d'écran insufisante pour naviguer convenablement sur ce site, Votre écran =" + h + " x " + l + " Minimum :" + hauteur + " x " + largeur;
 		if (h < hauteur)
			{ window.alert(texte);
			  window.moveTo(0, 0);
			  window.resizeTo(window.screen.availWidth, window.screen.availHeight);	
			  
			}
		else if (l < largeur)
			{ window.alert(texte);
			  window.moveTo(0, 0);	
			  window.resizeTo(window.screen.availWidth, window.screen.availHeight);	
			  
			}
		
		else
			{
			//window.moveTo(0, 0);
			//window.resizeTo(window.screen.availWidth, window.screen.availHeight);
			//window.resizeTo(l, h);
			}
	}
function taille_fen2(hauteur,largeur)
	{
		
		var h = window.screen.availHeight;
		var l = window.screen.availWidth;
		var H = (window.screen.availHeight - hauteur) / 2;
		var L = (window.screen.availWidth - largeur) / 2;
		var texte = "Résolution d'écran insufisante pour naviguer sur ce site, Votre écran =" + h + " x " + l + " Minimum :" + hauteur + " x " + largeur;
 		if (h < hauteur)
			{ window.alert(texte);
			  window.resizeTo(window.screen.availWidth, window.screen.availHeight);	
			}
		else if (l < largeur)
			{ window.alert(texte);
			  window.resizeTo(window.screen.availWidth, window.screen.availHeight);	
			}
		else
			{
			window.moveTo(H, L);
			//window.resizeTo(window.screen.availWidth, window.screen.availHeight);
			window.resizeTo(largeur, hauteur);
			}
			
			
	}
function ouverture_popup(url,titre,hauteur,largeur) 
      {
	  	
		var H = (screen.height - hauteur) / 2;
		var L = (screen.width - largeur) / 2;	
        var fenetre = window.open(url,titre,"toolbar=no,scrollbars=no,resizable=no,menubar=no,statusbar=no,status=no,titlebar=no,toolbar=no,width="+screen.width+",height="+screen.height+",top="+H+",left="+L);     		      
      }
function ouverture_popupt(url,titre,hauteur,largeur) 
      {
	  	
		var H = (screen.height - hauteur) / 2;
		var L = (screen.width - largeur) / 2;	
        var fenetre = window.open(url,titre,"toolbar=no,scrollbars=no,resizable=no,menubar=no,statusbar=no,status=no,titlebar=no,toolbar=no,width="+largeur+",height="+hauteur+",top="+H+",left="+L);     		      
      }