// Browser
ie = ((document.all) && (window.offscreenBuffering)) ? true : false;
nn = ((document.captureEvents) && (!document.getElementById)) ? true : false;
nn6 = ((document.getElementById) && (!document.all) && (document.documentElement)) ? true : false;
mz = ((document.getElementById) && (!document.all) && (document.documentElement)) ? true : false; 
op = ((document.getElementById) && (navigator.userAgent.indexOf('Opera') != -1)) ? true : false;

// Browserabfragen für IE und andere
ie_version = navigator.appVersion.substring(22,25);
ns_version = navigator.appVersion.substring(0,3);


if (nn && (ns_version < 4.8)){
    // Netscape Communicator
    document.location.href="noaccess.php";
}

if (ie && (ie_version < 5)){
	//Internet Explorer < 5
    document.location.href="noaccess.php";
}
