<!--
// Browsercheck
function browserCheck() {
	var agt = navigator.userAgent.toLowerCase();
	this.ie4 = (document.all) ? true : false;
	this.ns4 = (document.layers) ? true : false;
	this.dom2 = (document.getElementById) ? true : false;
	this.ie5 = (this.ie4 && this.dom2) ? true : false;
	this.ns6 = (!this.ie4 && this.dom2) ? true : false;
	this.win = (agt.indexOf('win') != -1) ? true : false;
	this.mac = (agt.indexOf('mac') != -1) ? true : false;

	if (this.ie4 && this.win) {
		with (document) {
			write('<scr'+'ipt language="VBScript" type="text/vbscript">\n');
			write('Function flashActX(flashVer)\n');
			write('\tOn Error Resume Next\n');
			write('\t\n');
			write('\tDim FlashObj\n');
			write('\tFlashObj = IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & flashVer))\n');
			write('\tflashActX = FlashObj\n');
			write('End Function\n');
			write('</scr'+'ipt>\n');
		}
		this.flashEnabled = (typeof(flashActX(6)) != 'undefined') ? true : false;
	} else {
		if (navigator.plugins && navigator.plugins['Shockwave Flash']) {
			var flashPlugIn = 0;
			var str = navigator.plugins['Shockwave Flash'].description.split(' ');
			for (var i = 0; i < str.length; i++) {
				if (!isNaN(parseInt(str[i]))) {
					flashPlugIn = parseInt(str[i]);
					break;
				}
			}
			this.flashEnabled = (flashPlugIn >= 6) ? true : false;
		} else {
			this.flashEnabled = false;
		}
	}
}
var is = new browserCheck();

if ( is.flashEnabled ) {
	sUrlDE = "de/default.htm";
//	sUrlEN = "en/default_flash.htm";
} else {
	sUrlDE = "de/default_non_flash.htm";
//	sUrlEN = "de/default.htm";
}


document.write( '<meta http-equiv="refresh" content="0;URL=' + sUrlDE + '">' );
//-->