function $() {
  var elements = new Array();

  for (var i = 0; i < arguments.length; i++) {
    var element = arguments[i];
    if (typeof element == 'string')
      element = document.getElementById(element);

    if (arguments.length == 1)
      return element;

    elements.push(element);
  }
  return elements;
}

function addAction(menu)
{
	if (menu.nodeType!=3)
	{
	var temp=menu.firstChild;
		while(temp!=null)
		{
			if(temp.nodeName=="DIV")
			{
				with(temp)
				{
onmouseover=function(){this.className='Hover';};
onmouseout=function(){this.className='';};
				}
			}

			if(temp.nodeName!="TABLE") addAction(temp);
		temp=temp.nextSibling;
		}
	}
}

function checkForm(t)
{
  if(t=='top'){
    if(document.search_top.q.value==""||document.search_top.q.value=="Поиск") return false;
  }else if($('advance').value=="false"){
    if(document.search.q.value=="") return false;
  }
return true;
}

function setHeight(id,h){
$(id).height=h;
}

function autologinT(){
  $("autologin").value=($("autologin").value=="false"?"true":"false");
  $("chb").src=($("autologin").value=="false"?"/img/chb.gif":"/img/chb_on.gif");
}

function ViewCommentsPage(page,id,path){
$('loading').src="/img/loading.gif";
$('viewComments').src="/comment?pcomm="+page+"&id="+id+"&pathcomm="+path;
}


