function set_class(Row,Class) {
    if (typeof(Row.getAttribute('class'))     != 'undefined') { Row.setAttribute('class', Class, 0); }
    if (typeof(Row.getAttribute('className')) != 'undefined') { Row.setAttribute('className', Class, 0); }
    return true;
}

function set_id(row,value) {
    if (typeof(row.getAttribute('id')) != 'undefined') { row.setAttribute('id', value, 0); }
    return true;
}
