/* openwindow.js */


<!--

function openWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=0,resizable'+'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=no'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

//-->

/*----------------------------------------------------------*/


function oeffnemicrofenster (url, title) {


  var widthOfWindow = 960;
  var heightOfWindow = 750;
  var URL=url;
  var LWindow = window.open("",title,"width=" + widthOfWindow + ",height=" + heightOfWindow + ",status=" + heightOfWindow + ",resizable=no,directories=0,menubar=0,status=0,scrollbars=no,location=no,toolbar=no");
  var sX = (screen.width - widthOfWindow) / 2;
  var sY = (screen.height - heightOfWindow) / 2;
  LWindow.moveTo(sX,sY);
  LWindow.document.location.href = URL;

}






