// Lohnrechner starten
function lohnDemo(){
  if(navigator.appName!="Microsoft Internet Explorer"||navigator.appVersion.substr(navigator.appVersion.indexOf('MSIE ')+5,3)<5.5){
    alert("Diese Seiten werden unter Umständen von Ihrem Browser nicht richtig dargestellt. Wir empfehlen den MS Internet Explorer ab Version 5.5. JavaScript ist in jedem Fall erforderlich.");
  }
  var x=956;
  var y=698;
  var bwwindow=window.open('about:blank','bwwin','width='+x+',height='+y+',menubar=no,statusbar=no,locationbar=no,scrollbars=no');
  bwwindow.moveTo((screen.width-x)/2,(screen.height-y)/2-30);
  bwwindow.focus();
  bwwindow.document.location.href='http://www.softengine.de/lohnrechner/gui.php';
}

