
function reloadRecherche() {
	target_uri = "../../../" + document.navigation.client.value + "/";
	window.location.href = target_uri; 
}

var status=false;
function selectAll() {
   if(status==false){
     status=true;
   } else {
     status=false;
   }
   for (var i=0; i <document.meinform.docid.length; i++) {
       document.meinform.docid[i].checked=status;
   }
}

	function menuehighlight(obj,action) {
		if (action==1) {
			obj.className="table-navigation";
		} else {
			obj.className="table-navigation-selected";
                }
	}

	function rowhighlight(obj) {
		if (obj.className=='row') {
			obj.className='rowhi';
		} else {
                        obj.className='row';
                }
	}

//function addnote2(id) {}
function addnote(id, page) {
	note = prompt("Bitte geben Sie die Notiz ein:","");
	//alert("/admin/beschluesse/" + id + "/kommentar-einfuegen.html");
	if (note!=null) {
	window.location.href = "kommentar-einfuegen.html?note=" + note + "&oid=" + id;
	}
}

function change_display(objekt) {

      if(document.getElementById(objekt).style.display == "inline"){
          document.getElementById(objekt).style.display = "none";
	      }else{
	          document.getElementById(objekt).style.display = "inline";
		      }
		      }
		      

