		//<![CDATA[
		/**
		 * Function gets called from flash files to hide themselfe
		 */
		 
		
		var arrFlashObj = [];
		
		function hideFlObj (elmName)
		{
			var flObj = document.getElementsByName(elmName)[0];
			arrFlashObj.push(flObj);
			flObj.parentNode.removeChild(flObj);
			//~ alert(document.body);
			
			//~ flObj.style.visibility = 'hidden';
		}		
		
		function hideObj ()
		{
		
			alert('test onload');
		}
		
		
		/**
		 * Function hides plain email of source code
		 */
		function hideEmil()
		{
			var x = String.fromCharCode(64);
			var r = String.fromCharCode(46);
			var e = "public";
			var a = "de";
			var t = "extrajetzt";
			
			document.writeln( e + x + t + r + a );
		}
		
		function goSelection(id)
		{
			if(id == 0) return;
			
			var sites = [
				"projects_internet.htm",
				"projects_mobile.htm",
				"projects_cd_rom_dvd.htm",
				"projects_interactive_tv.htm",
				"projects_kiosk.htm",
				"projects.htm"
			];
			
			window.location.href = sites[id-1] + "?id=3_1";
		}
		//]]>