function openPopup(DATEI) {
  top.name = "popup";
  var popupURL = DATEI;
  var popup = window.open(popupURL,"filme","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=380,height=290");
  if( navigator.appName.substring(0,8) == "Netscape" ) {
    popup.location = popupURL;
    popup.opener = self;
  }
  popup.focus();
}