var confirmMsg  = 'This operation have not rollback, ';
function confirmarLink(theLink, theconfirmMsg,row_id)
{
    if (confirmMsg == '' || typeof(window.opera) != 'undefined') {
        return false;
	    }
    var is_confirmed = confirm(confirmMsg + '\n' + theconfirmMsg);
    if (is_confirmed) {
		get('ak_row'+row_id).style.display='none';
		goAJAX('',str_replace('ak_m=B','ak_m=BS',theLink.href), '','','','0','0')
	    }
return false;
}