function winop(datei,name,width,height) {
var sw = screen.width;
var sh = screen.height;
  if (width>sw-50) width=sw-50;
  if (height>sh-100) height=sh-100;
  pict = window.open (datei,name,'width='+width+',height='+height+',scrollbars=yes,dirctories=no,resizable=yes,toolbar=no,location=no,status=no,menubar=no');
  pict.focus();
}


function sprache(Sprache) {
 if (document.film.sprache.value == "") {
     document.film.sprache.value+=Sprache;
 }else{
     document.film.sprache.value+= ";" + Sprache;
 }
}

function utitel(Utit) {
 if (document.film.utitel.value == "") {
     document.film.utitel.value+=Utit;
 }else{
     document.film.utitel.value+= ";" + Utit;
 }
}
function msprache(Msprache) {
 if (document.film.msprache.value == "") {
     document.film.msprache.value+=Msprache;
 }else{
     document.film.msprache.value+= ";" + Msprache;
 }
}
