	  function writeLexikonSWF() {
			var so = new SWFObject("/res/bosch-pt/hw/awb/awb_diy.swf", "awbswf", "534", "400", "8", "#ffffff");
   			so.addParam("wmode", "transparent");
   			so.addParam("quality", "high");
   			so.addParam("salign", "tl");

   			/* Model */
   			so.addVariable("siteurl", "");
   			//so.addVariable("livesuchurl", "");
				so.addVariable("suchergebnisurl", "CALLBACK");
   			so.addVariable("suchkategorieparam", "where");
   			so.addVariable("suchkategorie", "lexikon");
   			so.addVariable("suchbegriffparam", "search");
				so.addVariable("lostext", jsLblGo);

   			/* View: Text */
   			so.addVariable("suchlabel", jsLblLexikonSearch);
			so.addVariable("suchvorschlag", jsLblLexikonSearchExample);

			/* View: Layout */
   			so.addVariable("menu_offset_x", "250");
			so.addVariable("suchspecial", "lexikon");
			so.addVariable("awb", "0");

			/* Controller */
   			so.addVariable("callback", "loadPage");

   			so.write("awb");

		}

		function resizeFlash(height)
		{
			if(height==0)$('#awb').css('height',"35px");
			else $('#awb').css('height',"35px");

		}
		
		function decode_utf8( s )
		{
		  return decodeURIComponent( escape( s ) );
		}
		
		function loadPage(params)
		{
			checkNoHit = false;

			if(params.search) {
				searchParam = decode_utf8(params.search);
				window.location.href="/cgi-bin/boptfts.pl?SEARCH=" + searchParam + "&DOMAIN=lexicon_" + jsLblLang + "_" + jsLblCountry + "&HTML-NR=1&sort=az";
			}

		}
