function CheckSearchAttInfo() {

  with(document.SearchAttForm) {
  	if(att.value == "" && oid.value == "") {
      alert("Missing Attribute or OID .\n\nPlease enter either attribute or OID.");
      return false;
    }		
  }

	return true;
}

function MibSearchVisibility(Id)
{
  var Obj = document.getElementById(Id);
	Obj.style.visibility = "hidden";

	//if((Obj.style.visibility == "") || (Obj.style.visibility == "hidden")) 
	//  Obj.style.visibility = "visible";
	//if(Obj.style.visibility == "visible")
  //  Obj.style.visibility = "hidden";
}


