<!--
function openWindow(url, name, width, height) {
  x = (screen.width-width)/2;
  y = (screen.height-height)/2;

  window.open(url, name, 'left='+x+',top='+y+',width='+width+',height='+height+',scrollbars=no,toolbar=no,location=no');
}

function openWindow2(url, name, width, height) {
  x = (screen.width-width)/2;
  y = (screen.height-height)/2;

  if(window.showModalDialog) {
    window.showModalDialog(url, name, 'dialogWidth:' + width + 'px;dialogHeight:' + height + 'px;status:no;help:no;scroll:no');
  } else {
    window.open(url, name, 'left='+x+',top='+y+',width='+width+',height='+height+',scrollbars=no,toolbar=no,location=no,modal=yes');
  }  
}

function showUpload(filmId) {
  width = 400;
  height = 110;
  x = (screen.width-width)/2;
  y = (screen.height-height)/2;

  window.open('uploadCover.asp?filmId='+filmId, 'uploadDlg', 'width='+width+',height='+height+',scrollbars=no,toolbar=no,location=no');
}

function showInfo(url, item) {
  if (url.length == 0) return;
  if (item.length == 0) return;

  width = 640;
  height = 360;
  x = (screen.width-width);
  y = (screen.height-height);
  
  dlg = window.open(url + item, 'infoDlg', 'left='+x+',top='+y+',width='+width+',height='+height+',scrollbars=yes,toolbar=no,location=no');
//  if(dlg)
//    dlg.moveTo(x, y)
}

function goBack(anchor) {
//      if (!confirm('Eventuele wijzigingen worden niet opgeslagen!\nWil je toch doorgaan?')) return;
  anchor.href='#';
  history.back();
  return false;
}

function reloadOpener() {
  opener.document.location.reload();
}
//-->
