// fonction simple, seul le fichier à afficher est passé en variable
function affichage_popup(url, name){
window.open (url, name, 'height=620, width=820, toolbar=no, menubar=no, scrollbars=no, resizable=yes, location=no, directories=no, status=no,screenY=10,screenX=10')
}
// fonction simple, seul le fichier à afficher est passé en variable
function affichage_popup_bar(url, name){
window.open (url, name, 'toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, directories=no, status=no,screenY=10,screenX=10')
}


// fonction modulable, le fichier à afficher, le nom de la fenêtre, les largeurs, hauteurs et position de la fenêtre sont passés en variable
function popupmodulo(url, name, x, y) {
  window.open(url,name,'location=no,toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,status=no,width='+x+',height='+y+',screenY=10,screenX=10');
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  var mawindow = window.open(theURL,winName,features);
  mawindow.focus();
}
