jQuery(document).ready(function($){
$('button#apply_searchby_text').click(function(e){
var term=$('input#searchby_text').val();
if(term.length > 3){
$('form[name="form_search"]').submit();
}else if(0===term.length){
e.preventDefault();
}else{
$('div#show_search_result').html('<strong>' + mc4_tips.alert_min_chars + '</strong>');
$('div#show_search_result').show();
e.preventDefault();
}});
$('button#apply_searchby_mod').click(function(e){
var modId=$('select#searchby_mod').val();
if(modId!='0'){
$('form[name="form_search"]').submit();
}else{
e.preventDefault();
}});
$('button#apply_searchby_type').click(function(e){
var typeId=$('select#searchby_type').val();
if(typeId!='0'){
$('form[name="form_search"]').submit();
}else{
e.preventDefault();
}});
});