

// Nouveau script de popup,
  var prop =
	"toolbar = no," +
	"location = no," +
	"directories = no," +
	"status = no," +
	"menubar = no," +
	"resizable = no,";

  function popup(page){
	pop = window.open('','',prop + "scrollbar = yes,width = 600, height = 400");
	pop.document.write("<html><head><title> Infos légales</title>");
	pop.document.write("<frameset cols=*><frameset rows=*><frame src = " + page + " name = legal></frameset></frameset>");
	pop.document.write("</head></html>");
  }
  
  function popup2(page){
	pop = window.open('','',prop + "scrollbar = yes,width = 500, height = 230");
	pop.document.write("<html><head><title> Infos légales</title>");
	pop.document.write("<frameset cols=*><frameset rows=*><frame src = " + page + " name = legal></frameset></frameset>");
	pop.document.write("</head></html>");
  }
  
  function visio(repertoire){
	pop = window.open('','',prop + "scrollbar = no,width = 630, height = 550");
	pop.document.write("<html><title>Photos des Jardins Issler</title>");
	pop.document.write("<frameset cols='*'><frameset rows='*'><frame name='visio' src='visio.php?rep="+repertoire+"'></frame></frameset></frameset>");
	pop.document.write("</html>");
  }
