function click_row(go_url) {
        go_url_type = typeof go_url;
        if(go_url_type != 'undefined')
            document.location.href = go_url;
        else
            return null
}

