var fndVideoHigh      = 'width=850,height=715,menubar=0,scrollbars=0,resizable=0,left=250,top=100';
var fndDefaultWith    = 'width=350,height=500,menubar=1,scrollbars=1,resizable=1,left=250,top=100';
var fndDefaultWithout = 'width=350,height=500,menubar=0,scrollbars=0,resizable=0,left=250,top=100';

function openWin1 (theURL,winName)
 {
    Fenster = window.open(theURL,winName,"width=350,height=500,menubar=yes,scrollbars=0,resizable=0,left=250,top=100");
    Fenster.focus();
 }

function openWin2 (theURL,winName)
 {
    Fenster = window.open(theURL,winName,"width=394,height=500,scrollbars=0,resizable=0,left=250,top=100");
    Fenster.focus();
 }


function fnd_openWin(theURL,winName,features,w,h) {
  if ( w != "" && w != undefined ) {
    breite = RegExp("(width=[0-9]+)");
    if (  features.search("width=") >= 0 ) { 
      features = features.replace(breite,"width="+w);
    } else {
      features = features + ",width=" + w + "";
    }
  }
  if ( h != "" && h != undefined ) {
    hoehe = RegExp("(height=[0-9]+)");
    if ( features.search("height=") >= 0 ) {
      features = features.replace(hoehe, "height=" + h);
    } else {
      features = features + ",height=" + h + "";
    }
  }
  Fenster = window.open(theURL,winName,features);
  Fenster.focus();
}
