
    // MM_openBrWindow(theURL,winName,features)


function MM_openBrWindow(theURL,winName,features) { //v2.0
 window.open(theURL,winName,features);
}
/*
function hide_tr(trnr) {
  var table = document.all ? document.all.htable :
              document.getElementById('htable');
  table.rows[trnr].style.display = 'none';
}

function show_tr(trnr) {
  var table = document.all ? document.all.htable :
              document.getElementById('htable');
  table.rows[trnr].style.display = '';
}

function toggle_tr(trnr) {
  var table = document.all ? document.all.htable :
              document.getElementById('htable');

  alert(trnr);
  var tnr = strtoint(trnr);

  if (table.rows[tnr].style.display == '') {
     hide_tr(tnr);
  } else {
     show_tr(tnr);
  }
}
*/
