// <script>

	var options = '';	

	options += (getSearch('imagecode') != null) ? '&imagecode=' + escape(getSearch('imagecode')) : '';
	options += (getSearch('gammas') != null) ? '&gammas=' + escape(getSearch('gammas')) : '';
	options += (getSearch('colortemp') != null) ? '&colortemp=' + getSearch('colortemp') : '';
	options += (getSearch('schemecode') != null) ? '&schemecode=' + escape(getSearch('schemecode')) : '';
	if (options != '') options = '?browser=true' + options;	
	options += ((options == '') ? '?' : '&');
	options += 'configfile=' + escape('config_deutschland.xml');

	if (actualVersion >= 6) {	
		// if we've detected an acceptable version
		var oeTags =  					  
		'<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" WIDTH="720" HEIGHT="580" id="ShockwaveFlash1">' +
		'<PARAM NAME=movie VALUE="visualizer.swf' + options + '">' +
		'<PARAM NAME=quality VALUE="high">' +
		'<PARAM NAME=bgcolor VALUE="#ffffff">' +
		'<EMBED src="visualizer.swf' + options + '" quality="high" bgcolor="#ffffff" WIDTH="720" HEIGHT="580" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>' +
		'</OBJECT>';
		// embed the flash movie
		document.write(oeTags); 	
	} else {	
		// flash is too old or we can't detect the plugin
		window.location.replace('noflash.html');
	}
	
// </script>