/* Displays an confirmation box */
function confirmIt(textItem) {
  // browser is Opera (crappy js implementation)
  if (typeof(window.opera) != 'undefined') { return true; }
  var is_confirmed = confirm(textItem);
  //if (is_confirmed) { theLink.href += '&is_js_confirmed=1'; }
  return is_confirmed; }

function EnterKeyConfirmIt(textItem) {
  // browser is Opera (crappy js implementation)
  if (typeof(window.opera) != 'undefined') { return true; }

  if (window.event && window.event.keyCode == 13) {
     var is_confirmed = confirm(textItem);
  } else {
     var is_confirmed = 1;
  }
  //if (is_confirmed) { theLink.href += '&is_js_confirmed=1'; }
  return is_confirmed; }