<!--
var zoeken0=new Image(17,17);zoeken0.src="/images/bibliotheek/zoeken_0.gif";
var zoeken1=new Image(17,17);zoeken1.src="/images/bibliotheek/zoeken_1.gif";
var zoeken2=new Image(17,17);zoeken2.src="/images/bibliotheek/zoeken_2.gif";

function alterLink(frmObj) {
 re1 = new RegExp("/bibliotheek/zoek/index.php\\?");
 
 sName = frmObj.name;
 if (sName=='fQuery') sName = 'hQuery';
 if (sName=='hQuery') 
  addToUrl = '&'+sName+'='+escape(frmObj.value);
 else if (frmObj.checked) addToUrl = '&'+sName+'=1'; else addToUrl = '&'+sName+'=0';
 
 iMax = document.links.length;
 for (i=0;i<iMax;i++) {
  tmp = document.links[i].href;
  if (re1.test(tmp)) {
   re2 = new RegExp("&"+sName+"=[^(&|$)]*");
   if (re2.test(tmp))
    document.links[i].href = tmp.replace(re2,addToUrl)
   else document.links[i].href = tmp+addToUrl;
  }
 }
}

function init_zoek_in_bibliotheek() {
 alterLink(document.frmZoeken.fQuery);
}

setTimeout('init_zoek_in_bibliotheek()',40);

//-->
