  isOpera=isOpera5=window.opera&&isDOM; //Opera 5+ 
  isMSIE=document.all&&document.all.item&&!isOpera; //MSIE 4+ 
  isMozilla=navigator.appName=="Netscape"; //Mozilla 

 //---------- Функции для отладки -----------
  function TTPrintMove (code)
  {
    if (isMSIE || isOpera){ 
      document.getElementById('TTPrint').style.top=event.clientY + document.body.scrollTop+5+"px"; 
      document.getElementById('TTPrint').style.left=event.clientX + document.body.scrollLeft+5+"px"; 
    }
    else if (isMozilla){ 
      document.onmousemove=function(e){ 
      document.getElementById('TTPrint').style.top=e.pageY+5+"px"; 
      document.getElementById('TTPrint').style.left=e.pageX+5+"px"; 
      return true; 
     }
     }
  }
  
  function TTPrintClose ()
  {
    TTPrint('');
    document.getElementById('TTPrint').style.display='none';
  }
  
  function TTPrint (text)
  {
    document.getElementById('TTPrint').style.display='';
    document.getElementById('TTPrint').innerHTML="<table style=\"BORDER: #666666 1px solid; BACKGROUND-COLOR: #FFFFCC; COLOR: #666666; FONT-SIZE: 12px; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif\" border=0 align=left><tr><td>"+text+"</td></tr></table>";
  }
  function HidTextMultiBrowser(t){
    if(document.all){
	return t.innerText;
    } else{
	return t.textContent;
    }
  }