function changestyle(theRow, Style) {
  theRow.className = Style;
}

function confirmLink(theLink, theSqlQuery) {
  var is_confirmed = confirm(theSqlQuery);
  if (is_confirmed) {
    theLink.href += '&is_js_confirmed=1';
  }
  return is_confirmed;
}


