// Browsertypen

ie = ((document.all) && (window.offscreenBuffering)) ? true : false;
nn = ((document.captureEvents) && (!document.getElementById)) ? true : false;
mz = ((document.getElementById) && (!document.all) && (document.documentElement)) ? true : false;
op = ((document.getElementById) && (navigator.userAgent.indexOf('Opera') != -1)) ? true : false

// Browser-Version

b_version = navigator.appVersion.substring(0,1);



// Abfragen
// +++++++++++++++ Browser OPERA Version >=4 +++++++++++++++++++++++++++
if (op && (b_version <= 3)) //op 3.62 bleibt!
{
// op,  Browserversion ab 4
document.location.href="/scripte/meldung.htm";
}

// +++++++++++++++ Browser IE Version 3 ++++++++++++++++++++++++++++
if (ie && (b_version <= 3)) // bei <=4 - wird CrazyBrowser 1.0.5 weitergeleitet
{
document.location.href="/scripte/meldung.htm";
}

// +++++++++++++++ Browser Netscape Version 4 ++++++++++++++++++++++++++++
if (nn && (b_version <= 4))
{
document.location.href="/scripte/meldung.htm"; //NC 4.7x wird umgeleitet
                                      // NC 6.01 bleibt
									  // NC 6.1
									  // NC 6.2
									  // NC 6.21
									  // NC 7.0
}
// +++++++++++++++ Mozilla 0 ++++++++++++++++++++++++++++
if (mz && (b_version <= 0))
{
document.location.href="/scripte/meldung.htm";
}

