var currentURL = "http://buecherei.bergheim.de/webopac/index.asp?zst=HE&stichwort=";


function switchCurrentURL(url) {
	currentURL = url;
}


function genSearchURL() {
	if (navigator.appVersion.toLowerCase().indexOf("msie") != -1) {
		if (/^http:\/\/www\.(digibib|munzinger)\.(de|net)\//.test(currentURL))		
			document.suchbox.action = currentURL + unescape( encodeURIComponent(document.suchbox.input.value.replace(/ß/,'%C3%9F')));
			
		else
			document.suchbox.action = currentURL + document.suchbox.input.value;
			
			
	} else {

		if (/^http:\/\/www.digibib.net\//.test(currentURL))
			document.suchbox.action = currentURL + unescape( encodeURIComponent(document.suchbox.input.value.replace(/ß/,'%C3%9F')));
			
		else
			document.suchbox.action = currentURL + document.suchbox.input.value;
	}
}
