function delSingleRecord(chiediConferma,clientID,IDRecord)
{
    var go = true;
    if(chiediConferma==true)
    {
        go = confirm('Sicuro di voler eliminare il record selezionato?');
    }
    if (go==true)
        __doPostBack(clientID,'$del$'+ IDRecord);
}

function selectrow(row, ch_id, IDRecord)
{
    var t = row.parentElement;
    var i = 0;
    for(i=0;i<t.rows.length;i++)
        t.rows[i].style.backgroundColor = '';
    
    row.style.backgroundColor='yellow';
    document.getElementById(ch_id).value= IDRecord;
}

