// <!-- momentum kreativagentur, detect.js, copyright 2004, alle rechte vorbehalten -->

var breite = screen.width;
  if (breite <= 800)
    {
    var y=(screen.availHeight-300)/2;
    var x=(screen.availWidth-300)/2;
    window.open('global/detection/detection.html','detection','width=290,height=133,screenX='+x+',screenY='+y+',left='+x+',top='+y);
    }
  
function detection()
{
var bname=navigator.appName;
var bagent=navigator.userAgent;
  if (bname=="Microsoft Internet Explorer" && bagent.indexOf("MSIE 4")>=0)
    {
    var y=(screen.availHeight-300)/2;
    var x=(screen.availWidth-300)/2;
    window.open('global/detection/detection.html','detection','width=290,height=133,screenX='+x+',screenY='+y+',left='+x+',top='+y);
    return false;
    }
  if (bname=="Netscape" && bagent.indexOf("Mozilla/4")>=0)
    {
    var y=(screen.availHeight-300)/2;
    var x=(screen.availWidth-300)/2;
    window.open('global/detection/detection.html','detection','width=290,height=133,screenX='+x+',screenY='+y+',left='+x+',top='+y);
    return false;
    }
}