//big window
function openWin(url) {
  window.open(url, 'newWindow', 'scrollbars=yes,location=no,menubar=no,toolbar=yes,resizable=1,height=600,width=880,alwaysRaised=1');
  return false;
}

//small window
function openWinSmall(url) {
  window.open(url, 'newWindow', 'scrollbars=yes,location=no,menubar=no,toolbar=yes,resizable=1,height=300,width=650,alwaysRaised=1');
  return false;
}

//nicotine window
function openWinNicotine(url) {
  window.open(url, 'newWindow', 'scrollbars=yes,location=no,menubar=no,toolbar=yes,resizable=1,height=400,width=470,alwaysRaised=1');
  return false;
}
//Pathwy dropdown
function getPage() {
  var val = document.views.cells.options[document.views.cells.selectedIndex].value;
  window.location.href = "/search/pathway/" + val + ".jsp";
}

