function js_aedv_resultShortDisplay()
{
    if( document.getElementById('inRow') )
    {
        t = document.getElementById('inRow');
        t_count = t.rows.length;
        for( r=0; r<t_count; r++ )
        {
            row = t.rows[r];
            c_count = t.rows[r].cells.length;
            for( c=0; c<c_count; c++)
            {
                if( row.cells[c].innerHTML.indexOf('<') == -1 && row.cells[c].innerHTML.length > 20 )
                {
                    var str = row.cells[c].innerHTML+" ";
                    str = str.replace(/'/gi, "&#039;");
                    str = str.replace(/"/gi, "&quot;");
                    row.cells[c].innerHTML = '<div sh=\''+str+
                        '\' onMouseOver="this.innerHTML=this.getAttribute(\'sh\');" '+
                        'onmouseout="this.innerHTML=this.getAttribute(\'sh\').substr(0, 20)+\'...\';">'+
                        str.substr(0, 20)+'...</div>';
                }

            }
        }

    }
}
