// JavaScript Document
function popup(l,h,url,legende) {
 l=l+120;h=h+120;
 hauteur=Math.round((screen.availHeight-h)/2);
 largeur=Math.round((screen.availWidth-l)/2);
 
 
 uri='../navigation/pop.php?p='+url+'&leg='+legende;
 pop=window.open (uri, 'pop','location=false,height='+h+',width='+l+',toolbar=no,menubar=no,scrollbars=no,resizable=yes,location=no,directories=no,status=no,top='+hauteur+',left='+largeur);

  pop.window.focus();
}