var fm_kserv = 'width=310,height=300,screenX=0,screenY=0,status=no,menubar=no,toolbar=no,scrollbars=no,resizable=yes,location=no';
var frn_pcCheck = 'width=790,height=556,screenX=0,screenY=0,status=no,menubar=no,toolbar=no,scrollbars=no,resizable=no,location=no';
var frn_mnp = 'width=550,height=600,screenX=0,screenY=0,status=no,menubar=no,toolbar=yes,scrollbars=yes,resizable=no,location=no';



function fm_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();
}