function Loeschen() 
{
	Check = confirm("Wollen Sie wirklich löschen?");
	if (Check == false)
	{
	return false;
	}
}

/*
function clip (id) { 
	if (document.getElementById(id).style.display == 'none') {
	   document.getElementById(id).style.display = "block"; } 
    else {
	   document.getElementById(id).style.display = "none"; } }
     

$(document).ready(function(){
    $(".checkallboxes").toggle(                    //this is the gif file id
    function() {
        $('.checkbox').attr('checked','checked'); //add the atrribute checked
    },
    function () {
        $('.checkbox').removeAttr("checked");     //remove the attribute checked
    });
});
*/

$(document).ready(function() {
    //check all checkboxes
    $("#check_all_boxes").click(function() {
        $(".quarantaene_checkbox").each(function(i){
            $(this).attr("checked","checked");
        });
    });
 
    //uncheck all checkboxes
    $("#uncheck_all_boxes").click(function() {
        $(".quarantaene_checkbox").each(function(i){
            $(this).removeAttr("checked");
        });
    });
 
    //reset the search form
    $("#reset_button").click(function() {
        $("#search_form input").each(function(i) {
            //alert($(this).html());
 
        });
    });
 
});
