function windowopen(theURL,winName,features)
{ //v1.2
  window.open(theURL,winName,features);
// javascript:windowopen('*.php3','person','width=500,height=350,scrollbars=auto')
}

function person (person)
{ // Anzeige von Mitarbeitern
var theURL="../../lib/person.php?person=";
    theURL=theURL+person;
var winName="person";
var features="width=500,height=350,scrollbars=auto";
windowopen(theURL,winName,features);
}

function status (person)
{ // Anzeige von Mitarbeitern
var theURL="../../lib/person.php?sstatus=";
    theURL=theURL+person;
var winName="person";
var features="width=530,height=350,scrollbars=yes";
windowopen(theURL,winName,features);
}

function abfrage (region)
{ // Abfrage von Microstandorten
var theURL="../../lib/micro.php?plz1=";
 if (region == "tr-li")
    {
    region="10369&plz2=12489&plz3=12439&plz4=12437";
    }
  if (region == "mi")
    {
    region="10179&plz2=10178&plz3=10115";
    }
  if (region == "pr-we")
    {
    region="13086&plz2=10409";
    }

    theURL=theURL+region;
//alert(theURL);
var winName="abfrage";
var features="width=600,height=550,scrollbars=yes";
windowopen(theURL,winName,features);
}