window.status="IGBCE - BJA Neumünster"

function ReqURL( url, target )
{

var xmlHttp = false;

   // Internet Explorer
   try
      {
      xmlHttp  = new ActiveXObject("Msxml2.XMLHTTP");
      }
   catch(e)
      {
      try
         {
              xmlHttp  = new ActiveXObject("Microsoft.XMLHTTP");
          }
      catch(e)
         {
         xmlHttp  = false;
         }
      }
   // Mozilla, Opera und Safari
   if (!xmlHttp  && typeof XMLHttpRequest != 'undefined')
      {
      xmlHttp = new XMLHttpRequest();
      }
      req_send = null;
   xmlHttp.open("GET", url, true);
   xmlHttp.send(null);
   xmlHttp.onreadystatechange = function ()
      {
      if (xmlHttp.readyState == 4)
         {
         //alert(xmlHttp.responseText);
         document.getElementById(target).innerHTML = xmlHttp.responseText;
         }
      };
}

function NewWindow(mypage,myname,w,h,scroll){
  LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable';
  window.open(mypage,myname,settings);
}

