function searchOnGoogle() {
	window.location="http://www.furttalweb.ch/search.php?search=" + document.searchBar.search.value;
}
function searchOnLeo()  {
	var strURL = "http://dict.leo.org/?lp=ende&lang=de&searchLoc=0&cmpType=relaxed&relink=on&sectHdr=on&spellToler=std&search=" + encodeURI(document.searchBar.search.value);
	var wind = window.open(strURL, "leo", "toolbar=yes,resizable=yes,scrollbars=yes,location=yes,menubar=yes,left=0,top=0");
	wind.focus();
}
function searchCHRoute()  {
	var enteredInput = document.searchBar.search.value;var $part1 = enteredInput.substr(0, 4);var $part2 = enteredInput.substr(5, 4);var strURL = "http://www.finaroute.ch/cgi-bin/finaroute.cgi?lang_suffix=de&start=" + $part1 + "&ziel=" + $part2 + "&schnell=on&autobahn=on&karte=on";
	var wind = window.open(strURL, "finaroute", "toolbar=yes,resizable=yes,scrollbars=yes,location=yes,menubar=yes,left=0,top=0");
	wind.focus();
}			

