﻿function txt_employee_search_onfocus(target) {
    $(target).css('font-style', 'normal');
    txt_search_onfocus(target);
}

function txt_search_onfocus(sender) {
    if (sender != null) {
        $(sender).focus();
        $(sender).select();
    }
}

function txt_search_mouseup(e) {
    e.preventDefault();
}
