

// Print
  	function Print()
	{
		window.print();
	}

// Katalog
    function show_hide(id)
    {
      if ( document.getElementById('info_'+id).style.display == 'none' )
      {
        document.getElementById('info_'+id).style.display = 'block';
        document.getElementById('title_'+id).style.backgroundColor = '#eee';

      } else {
        document.getElementById('info_'+id).style.display = 'none';
        document.getElementById('title_'+id).style.backgroundColor = '#ffffff';
      }
    };

    function hover(id)
    {
      if (document.getElementById('info_'+id).style.display == 'none')
      {
        if ( document.getElementById('title_'+id).style.backgroundColor == '' ) document.getElementById('title_'+id).style.backgroundColor = '#eee';
        else document.getElementById('title_'+id).style.backgroundColor = '';
      }
    };

