  function highlight(bHighlight)
  {
      objSearch=document.getElementById("search");
      if (bHighlight)
      {
         objSearch.style.color='#ffffff';
      }else{
         objSearch.style.color='#C0C0C0';
      }
      objSearch=document.getElementById("search");
  }


  function showProduktDemo(strURL)
  {
  	wndDemo = window.open(strURL, "Produktpräsentation", "width=668,height=423,left=320,top=200");

  }

  var fenster;
  function showPicture(Bild, Beschreibung)
  {
  	var breite = Math.round(screen.width * 0.8);
  	var hoehe = Math.round(screen.height * 0.8);

  	Ziel = "gallery/view_image.php5?img=" + Bild + "&descr=" + Beschreibung; // + "&width=" + (breite-31) + "&height=" + (hoehe-75);
	if ((fenster) && (fenster.closed))
	{
		fenster = null;
	}
	if (!fenster)
	{
		fenster = window.open (
		Ziel,
		"_blank",
		+"toolbar=0"
		+",location=0"
		+",directories=0"
		+",status=0"
		+",menubar=0"
		+",scrollbars=1"
		+",resizable=1"
		+",width=" + breite
		+",height=" + hoehe
		);
		fenster.moveTo(0,0);
		//fenster.resizeTo(screen.availWidth,screen.availHeight);
	}else{
		fenster.location.href = Ziel;
		fenster.focus();
	}
  }