function go(i) {
  location.href='index.php?p='+i;
}

function go2(h) {
  location.href=h;
}

function popup(i,h,w) {
  window.open("popup.php?p="+i, "popup", 
    "location=no,menubar=no,scrollbars=yes,"+
    "resizable=yes,status=no,toolbar=no,"+
    "height="+h+",width="+w);
}

function showTable(tableId,valArray,min,max) {
  var table=document.getElementById(tableId);
  for (i=table.rows.length-1; i>0; i--)
    table.deleteRow(i);
  var j=1;
  for (i=0; i<valArray.length;i++) {
    var row=valArray[i];
    if ((row[0] >= min) && (row[0] < max)) {
      var htmlRow=table.insertRow(j++);
      htmlRow.style.backgroundColor=(j%2?'#F7FCDE':'#F9FAB4');
      var x=htmlRow.insertCell(0);
      x.innerHTML=row[0];
      x.style.textAlign='right';
      var x=htmlRow.insertCell(1);
      x.innerHTML=row[1];
      x.style.textAlign='right';
      var x=htmlRow.insertCell(2);
      x.innerHTML=row[2];
      x.style.textAlign='right';
    }
  }
}