	function ccc(obj, color) {
		obj.style.backgroundColor = color;
	}
    function showFirm(vid, id) { 
	  var info = document.getElementById("info");
	  if (vid) info.style.visibility = "visible"
	  else info.style.visibility = "hidden";
	  info.innerHTML = firm[id]; 
	}
    function showInfo(vid) { 
	  var info = document.getElementById("info");
	  if (vid) info.style.visibility = "visible"
	  else info.style.visibility = "hidden";
	}
    function setInfo(id,str) { 
	  var info = document.getElementById("info"+id);
	  info.innerHTML = str; 
	}
	function showKatFirm(str,id) { 
	  var info = document.getElementById("katalog_firm");	  
	  info.innerHTML = str;
	  if (id == 0) info.style.background = "background: url(\"images/tit_ces.jpg\") no-repeat bottom right";
	  if (id == 1) info.style.background = "background: url(\"images/tit_cor.jpg\") no-repeat bottom right";
	  if (id == 2) info.style.background = "background: url(\"images/tit_cer.jpg\") no-repeat bottom right";
	  if (id == 3) info.style.background = "background: url(\"images/tit_cc.jpg\") no-repeat bottom right";
	  if (id == 6) info.style.background = "background: url(\"images/tit_fen.jpg\") no-repeat bottom right";
	  if (id == 4) info.style.background = "background: url(\"images/tit_art.jpg\") no-repeat bottom right";
	  if (id == 5) info.style.background = "background: url(\"images/tit_tea.jpg\") no-repeat bottom right";
	  if (id == 10) info.style.background = "background: url(\"images/tit_dec.jpg\") no-repeat bottom right";
	}
    function showInfoEx(id) { 
	  showKatFirm('');
	  var info = document.getElementById("content");	  
	  info.innerHTML = '<p align="left" class="title">Немного о продукции</p>' + firm[id+7]; 
	}

    function showFoto(id,titl) { 
		w = 800;
		h = 600;
	  cfg = 'height=' + h + ',width=' + w + 'top=0,left=0,toolbar=no,menubar=no,scrollbars=no,resizable=yes,location=no,directories=no,status=no';
  	  //window.open ("show.php?pict=images/katalog/"+id+"&titl="+titl,"newwin",cfg);
	  window.open("show.php?pict="+id+"&titl="+titl,"_blank",cfg);
	  //alert("test - " + id);
	}
	
    function setFlag(id) {
		var newURL;
		newURL = document.URL;
		if (id == 1) {
			document.URL = document.URL + "&1";
		}	  
		if (id == 0) 
			document.URL = newURL.slice(0,newURL.length-2);	
		//alert(newURL);
	}

	
	function toggle( e ) {
		if( typeof( e ) != "object" ) e = document.getElementById( e )
		e.style.display = ( e.style.display == "none") ? "" : "none";
	}