var popup_scroll 	= "toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=1,width=600,height=400,top=100,left=0,status=0";
var popup_scroll1 	= "toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=1,width=800,height=600,top=100,left=0,status=0"; 
var popup_scroll3 	= "toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1,width=250,height=300,top=100,left=0,status=0";   
var popup_scroll4 	= "toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1,width=800,height=250,top=100,left=0,status=0";
var popup_scroll5 	= "toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1,width=800,height=700,top=100,left=0,status=0";

// Ouverture d'un popup
function ouvrir(page) {
	window.open(page);
}

// Ouverture popup photo
function photo(page,titre) {
	var contenu =	  "<html><head><link href='css/style.css' rel='stylesheet' type='text/css'>"
					+ "<title>"+titre+"</title></head><body topmargin='0' leftmargin='0' background='img/fond_tab.gif'>"
					+ "<table width='100%' align='center'>"
					+ "<tr><td align='center'><img border='0' src='"+page+"'></td></tr>"
					+ "<tr><td align='center'>"
					+ "<a href='javascript:self.close()' class='lien'>"
					+ "[ Fermer ]</td></tr></table></body></html>";
					
	var fenetre = open('page','photo',popup_scroll);
	
	fenetre.document.write(contenu);

}

// Ouverture popup
function popup(page,titre) {
	fiche = open(page,'Solutions1',popup_scroll1);

	if (navigator.appVersion.substring(1,0) >= "3")
    {
    fiche.focus (); 
    }
}

// Ouverture popup diaporama
function popup_diapo(page,titre) {
	fiche = open(page,'Solutions1',popup_scroll5);

	if (navigator.appVersion.substring(1,0) >= "3")
    {
    fiche.focus (); 
    }
}

// Ouverture popup plan
function plan(page,titre) {
	var contenu =	  "<html><head><link href='css/style.css' rel='stylesheet' type='text/css'>"
					+ "<title>"+titre+"</title></head><body topmargin='0' leftmargin='0'  bgcolor='#336699'>"
					+ "<table width='100%' height='100%' align='center' >"
					+ "<tr><td align='center' valign='center' bgcolor='#336699'><img border='0' src='"+page+"'></td></tr>"
					+ "</td></tr></table></body></html>";
					
	var fenetre = open('page','photo',popup_scroll5);
	
	fenetre.document.write(contenu);

}

