// JavaScript Document
function popUp(URL) {
    var features = 'scrollbars=yes,width=750,height=800,resizable=yes,top=15, left=15';
    var winName = 'fiche';
    window.open(URL,winName,features);
}

