function openFilm(url)
{
  w=350;
  h=275;
  LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  settings = 'width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',status=0';
  var win = window.open('../scripts/playmov.php?film=' + url,'titel',settings);
  win.focus();
}

