function showQSPanel(strQSPanelId){
  if(document.getElementById) {
    document.getElementById("qs1").style.display="none";
    document.getElementById("qs2").style.display="none";
    document.getElementById(strQSPanelId).style.display="block";
  }
}
function setSearch(strQSPanelId,blnSubmit) {
  if (strQSPanelId=="qs1") {
    document.forms[0].action="http://ccs.wash-id.net/cgi-bin/Pwebrecon.cgi";
    document.forms[0].method="GET";
  }
  if (strQSPanelId=="qs2") {
    var articleSearch = document.getElementById("articleSearch");
    document.forms[0].action="/lrc/library/_pqdauth/?todo=" + encodeURIComponent(articleSearch.value) + "ZzZzZ" + "NoSpec";
    document.forms[0].method="POST";
  }
  if (blnSubmit==1) {
    document.forms[0].submit();
  }
}