function mOvr(src,clrOver)
{
  if (!src.contains(event.fromElement)) {
    src.style.cursor = 'hand';
    src.style.backgroundColor = clrOver;
    //src.children.tags('A')[0].className='menu:hover';
  }
}
function mOut(src,clrIn)
{
  if (!src.contains(event.toElement)) {
    src.style.cursor = 'default';
    src.style.backgroundColor = clrIn;
    //src.children.tags('A')[0].className='menu';
  }
}

function mClk(src) {
  if(event.srcElement.tagName=='TD'){
        src.children.tags('A')[0].click();
  }
}

function sendsearch()
{
  if (document.web.q.value == "") {
    alert("\nОшибка запроса!");
  }
  else {
    document.web.submit();
  }
}

function OpenWindow(winleft, wintop, winwidth, winheight, name, href) 
{
window.open( href, name, 'top=' + wintop + ',left=' + winleft + ',width=' + winwidth + ',height=' + winheight + ',status=no,toolbar=no,menubar=no,scrollbars=no,esizable=no');
}

function OpenWindow2(winleft, wintop, winwidth, winheight, name, href) 
{
window.open( href, name, 'top=' + wintop + ',left=' + winleft + ',width=' + winwidth + ',height=' + winheight + ',status=no,toolbar=no,menubar=no,scrollbars=yes,esizable=no');
}