
function PopupCenter(page,largeur,hauteur,options) {
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}

function SendAmi(width,height) {
// On récupère ici l'url de la page en cours
var url=escape('<%=request.servervariables("SCRIPT_NAME")%>');
// On récupère en javascript le nom de la page en cours
var title=escape(document.title);
// On appelle le fichier send_mail.asp se trouvant à la racine du site
var top=(screen.height-height)/2;
var left=(screen.width-width)/2;
window.open("../formulaire/form_ami.html?art="+url+"&titre="+title,'','toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable= no,copyhistory=no,height='+height+',width='+width+',top='+top+',left='+left+',');
}

function PopupCenter2(page,largeur,hauteur) {
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+'toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable= no,copyhistory=no');
}

