    function OnLoad() {
		
		// Create a search control
		var searchControl = new GSearchControl();
		searchControl.setLinkTarget(GSearch.LINK_TARGET_SELF);
		searchControl.setResultSetSize(GSearch.LARGE_RESULTSET);
	  
		var options = new GsearcherOptions();
		options.setExpandMode(GSearchControl.EXPAND_MODE_OPEN);

		var webSearch = new GwebSearch();
		webSearch.setSiteRestriction("www.neuronalesnetz.de");
		searchControl.addSearcher(webSearch,options);

		// Tell the searcher to draw itself and tell it where to attach
		searchControl.draw(document.getElementById("searchcontrol"));

		// Execute an inital search
		var param = decodeURI(window.location.search);
		var r = /\?search=([^&]*)/;
		var result = r.exec(param);
		var s = RegExp.$1;
		searchControl.execute(s.replace('+',' '));
    }