// JScript source code

function searchIt(code)
{
	 if (document.main.searchField.value=="")
		return;
	 if(code==13 ||event.keyCode==13)
		window.open("http://mikranet.org.il/search/search.html?query="+document.main.searchField.value,"_top");
}
//-----------------------------------------------
function ShowSubMenu(sTableID,sImgId,bVisible)
{
  var sID = document.getElementById(sTableID);
  var sImgId = document.getElementById(sImgId);
  if (bVisible)
  {
    sID.style.top = (sImgId.offsetTop + 20);
    sID.style.left= (LeftSide.offsetLeft - 149);
    sID.style.display = '';
  }
  else 
  {
    if (sID.componentFromPoint(event.clientX, event.clientY) == "outside")
     sID.style.display='none';
  }
}    
//-----------------------------------------------------------
function MouseOverTD(obj)
//       ~~~~~~~~~~~
{
  obj.style.backgroundColor= '#efe3c5';
}
//---------------------------------------------------------------------------------------
function MouseOutTD(obj)
//       ~~~~~~~~~~
{
  obj.style.backgroundColor = '#e0ac84';
}
//---------------------------------------------------------------------------------------
