var confirmMsg  = 'Вы действительно хотите';

function confirmLink(theLink, theSqlQuery)
{
    // Confirmation is not required in the configuration file
    if (confirmMsg == '') {
        return true;
    }

    var is_confirmed = confirm(confirmMsg + ' :\n' + theSqlQuery + ' ?');
    if (is_confirmed) {
        theLink.href += '';
    }

    return is_confirmed;
} // end of the 'confirmLink()' function



function m_in(theLink){
       theLink.style.backgroundColor='#CCFFCC';
}
function m_out(theLink){
       theLink.style.backgroundColor='#FFFFFF';
}
