function OpenPopup(url, width, height) {
  var scrwidth=screen.width;
  var helppop = window.open(url, 'portalpopup', 'toolbar=no,location=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,top=100,left=' + (scrwidth - (width + 50)) + ',width=' + width  + ',height=' + height);
  if (window.focus) {helppop.focus()};
  
  if (url.substr(url.length-5, 5)=='print') {
    helppop.print();
  }
  return false;
}