// JavaScript Document
function open_windowfiche(questions){
var hauteur_popup = 250;
var H = (screen.height - hauteur_popup) / 3;
var largeur_popup = 380;
var L = (screen.width - largeur_popup)-100;
pop_up1 = Popup1=window.open(questions, "Popup1", "status=,scrollbars=no,resizable=no,height="+hauteur_popup+",width="+largeur_popup+",top="+H+",left="+L);
window.Popup1.focus();
}
function open_windowficheArt(articles){
var hauteur_popup = 287;
var H = (screen.height - hauteur_popup) / 4;
var largeur_popup = 250;
var L = (screen.width - largeur_popup);
pop_up2 = Popup2=window.open(articles, "Popup2", "status=,scrollbars=no,resizable=no,height="+hauteur_popup+",width="+largeur_popup+",top="+H+",left="+L);
window.Popup2.focus();
}