function confirmAction(strAction, strConfirm) {
    // Confirmation is not required in the configuration file
    // or browser is Opera (crappy js implementation)
    if (strAction == '' || typeof(window.opera) != 'undefined') {
        return true;
    }

    var is_confirmed = confirm(strAction + '\n\n' + strConfirm);
    //if (is_confirmed) {
    //    theLink.href += '&is_js_confirmed=1';
    //}

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

function addtext(newText, destination) {
  //var newtext = document.myform.inputtext.value;
  //document.myform.outputtext.value += newtext;
  destination.value += newText;
}

function overTR1() {tr = window.event.srcElement;if( tr.tagName.toUpperCase() == 'TABLE' ){return;}  while(tr.tagName.toUpperCase() != 'TR' ) {tr = tr.parentElement;}tr.style.background = "FFFFFF";}
function outOfTR1(){tr = window.event.srcElement;if (tr.tagName.toUpperCase() == 'TABLE') {return;}while(tr.tagName.toUpperCase() !='TR') {tr = tr.parentElement;}tr.style.background ="FAFAFA";}