
function ShowRMenu(idr, count)
{
 var tri;
 
 for(i=1; i<=count; i++)
 {
  tri=document.getElementById(idr+"_"+i);

  if(tri.style.display=='none')
   tri.style.display='';
  else
   tri.style.display='none'; 
 }
}

function lib_bwcheck(){ //Browsercheck (needed)
	this.ver=navigator.appVersion; this.agent=navigator.userAgent
	this.dom=document.getElementById?1:0
	this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
	this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom)?1:0;
	this.ie4=(document.all && !this.dom)?1:0;
	this.ie=this.ie4||this.ie5||this.ie6
	this.mac=this.agent.indexOf("Mac")>-1
	this.opera5=this.agent.indexOf("Opera 5")>-1
	this.ns6=(this.dom && parseInt(this.ver) >= 5) ?1:0; 
	this.ns4=(document.layers && !this.dom)?1:0;
	this.bw=(this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.opera5 || this.dom)
	return this
}

function CheckSearch()
{
	var search = document.getElementById('search-input');
	if (search.value.length>=3)
		return true;
	else 
	{
		alert("Поисковая строка должна содержать более трех символов");
		return false;
	}
	
}

function ResizeMenu()
{
//  baseobject=document.getElementById("menul");
//  oCMenu.cm_resized();
//  alert(window.document.body.scrollWidth);
//  delete oCMenu;
//  oCMenu.makeStyle(); 
//  oCMenu.construct();
//  alert(baseobject.style.OffsetY);
// oCMenu.makeStyle(); 
}