function popup(url, width, height) {
  var params = "";
  if (width != 0 && height != 0) {
    params = "width=" + width + ",height=" + height + ",resizable=yes,scrollbars=yes";
  } else {
    params = "";
  }
  window.open(url, 'popup', params);
}

function sendPage(profile) {
         window.open('/do/sendpage?url=' + escape(document.location.href) + '&title=Devenez%20client' + '&lang=fr' + '&profile=' + profile, 'Transmit', 'width=450,height=500,resizable=yes,scrollbars=yes');
}