<!--

// Browser

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);


// Weiterleitung zu einer Seite

if (ie && (b_version < 4))
{ document.location.href="campingalt/d.htm"; }
// ohne Java

if (nn && (b_version <= 4))
{ document.location.href="campingalt/d.htm"; }
// mit Fenstertechnik ohne DIV/ID

if (op && (b_version < 5))
{ document.location.href="campingalt/d.htm"; }
// mit Fenstertechnik ohne DIV/ID

if (!(ie) && !(b_version >= 3))
{ document.location.href="campingalt/d.htm"; }
// mit Fenstertechnik ohne DIV/ID

//-->