function go(link) {
   document.location.href = link;
}
function show_element(id, visible) {
   if (visible) {
      jQuery('#' + id).show();
   } else {
      jQuery('#' + id).hide();
   }
   return false;
}
function applyForm(form) {
    $('input[name=edit]', '#'+form).val(2);
    $('#'+form).submit();
    return false;
}
function saveForm(form) {
    $('input[name=edit]', '#'+form).val(1);
    $('#'+form).submit();
    return false
}
$(function() {
    $('#search-btn').click(function() {
        $('#search').submit();
        return false;
    })
})
