function videoPopup(video, splash_image) {
  var width = 500;
  var height = 380;
  swidth = ((screen.width/2)-(width/2));
  sheight = ((screen.height/2)-(height/2));
  popupWin = window.open('/sfSimpleCMS/video?f='+escape(video)+'&i='+escape(splash_image),'video_player','width='+ width +',height='+ height +',screenY='+ sheight +',screenX='+ swidth +',top=' + sheight + ',left=' + swidth + ',resizeable=no,scrollbars=no');
  popupWin.focus();
}
