// JavaScript Document
var prior_ob=false;
var timer=false;
function Visibility_ob_onMouseOver(ind_current_ob)
 {
  try
   {
   var current_ob=document.getElementById(ind_current_ob);
   current_ob.id;// Проверка на существование объекта с переданным идентификатором
   }
   catch(exc)
   {
   return; 
   }
  current_ob.style.display='block';
  if(timer)
    {
	clearTimeout(timer);
	timer=false;
	}
	try
	 {
     if(current_ob.id!=prior_ob.id)
      {
      prior_ob.style.display='none';
	  }
	 }
     catch(exc)
	  {
	  }
 prior_ob=current_ob;
 }
function Visibility_ob_onMouseOut(mID)
 {
	 try
   {
   var close_ob=document.getElementById(mID);
   close_ob.id;// Проверка на существование объекта с переданным идентификатором
   }
   catch(exc)
   {
   return; 
   }	
 timer=setTimeout("prior_ob.style.display='none'",800);
 }
 
 
var prior_ob2=false;
var timer2=false;
function Visibility_ob_onMouseOver2(ind_current_ob, width_ob)
 {
  try
   {
   var current_ob=document.getElementById(ind_current_ob);
   current_ob.id;// I?iaa?ea ia nouanoaiaaiea iauaeoa n ia?aaaiiui eaaioeoeeaoi?ii
	 
	 var w_ob=document.getElementById(width_ob);
   w_ob.id;
   }
   catch(exc)
   {
   return; 
   }
	 

	 current_ob.style.width=w_ob.clientWidth+'px';
	 current_ob.style.display='block';
	 	 
	if(timer2)
  {
	clearTimeout(timer2);
	timer2=false;
	}
	
	try
	 {
		 if(current_ob.id!=prior_ob2.id)
	      {
				prior_ob2.style.display='none';
		  }
		 }
 catch(exc)
		{
		}
 prior_ob2=current_ob;
 }
function Visibility_ob_onMouseOut2(mID)
 {
	 try
   {
   var close_ob=document.getElementById(mID);
   close_ob.id;// I?iaa?ea ia nouanoaiaaiea iauaeoa n ia?aaaiiui eaaioeoeeaoi?ii
   }
   catch(exc)
   {
   return; 
   }	
 timer2=setTimeout("prior_ob2.style.display='none'",800);
 }