function show_more_details(b) {
    $("#details_" + b).css("display", "inline");
    $("#details_show_more_link_" + b).hide();
}

function set_head_search_text(c) {
    var d = "hier Ideen suchen";

    if (typeof c.value == "undefined" || c.value == "") {
        c.value = d;
    }
}

