function multimediaPopup(url) {
  width = 414;
  height = 280;
  // There is an old non-content video in /Multimedia that needs more vertical real estate
  // than the Video Assets.
  if (url.indexOf('videoassets') == -1) { height=610; }
  window.open(url, "", "scrollbars=no,width=" + width + ",height=" + height + ",resizeable=no")
}

function popup(url, width, height) {
  if (url.length > 0) {
    window.open(url, "", "scrollbars=yes,width=" + width + ",height=" + height + ",resizable=yes")  
  }
}
