function init(){/*	var SEARCH_QUERY = "/" + document.forms[0].DB.value;		// recherche en fonction du type de recherche 		var typeSearch = document.forms[0].TypeRecherche;					// T = recherche de tous les document	// O = recherche des organisations	// P = recherche des programmes	if (typeSearch) {		switch (typeSearch.value){			case "O":				SEARCH_QUERY = SEARCH_QUERY + "/SearchResult/?SearchView&Query=FIELD FORM CONTAINS Organisation and FIELD Fullname CONTAINS ";				break;			case "P":				SEARCH_QUERY = SEARCH_QUERY + "/SearchResult/?SearchView&Query=FIELD FORM CONTAINS Programme and FIELD Name CONTAINS ";				break;			case "T":				SEARCH_QUERY = SEARCH_QUERY + "/SearchResult/?SearchView&Query=";				break;			default : SEARCH_QUERY = SEARCH_QUERY + "/SearchResult/?SearchView&Query=";		}		} else {		// si le type de recherche n'est pas mentionn\u00E9e, cherche tous les documents 		SEARCH_QUERY = SEARCH_QUERY + "/SearchResult/?SearchView&Query=";	}	*/	// Recherche si enter est entr\u00E9 dans le champ searchbox	var e = document.getElementById('SearchSiteString');	if (e != null) {		e.initialString = e.value;		e.onfocus = function () {			if (this.value == this.initialString) this.value = '';		}		e.onblur = function () {			if (this.value == '') this.value = this.initialString;		}		e.onkeypress = function (event) {			if (window.event) event = window.event;			if (event.keyCode == 13 && this.value != this.initialString) {				document.getElementById('SearchSiteAction').click();				return false;			}		}		e.disabled = false;	}}