
function onloadInic() {
	var formElement = document.getElementById("ArticleReaderFilterForm");
	var easySearchInput = formElement.easySearch;
	if (easySearchInput != null) {
		easySearchInput.onfocus = clearSearchValue;
		easySearchInput.onblur = setSearchValue;
		if ((easySearchInput.value == "") || (easySearchInput.value == "HLEDEJ + enter")) {
			easySearchInput.value = "HLEDEJ + enter";
			easySearchInput.style.color = "#BA1F01";
			easySearchInput.style.fontWeight = "bold";
			easySearchInput.style.textAlign = "center";
		}
	}
}

function clearSearchValue() {
	if (this.value == "HLEDEJ + enter") {
		this.value = "";
		this.style.color = "#000000";
		this.style.fontWeight = "normal";
		this.style.textAlign = "left";
	}
}

function setSearchValue() {
	if (this.value == "") {
		this.value = "HLEDEJ + enter";
		this.style.color = "#BA1F01";
		this.style.fontWeight = "bold";
		this.style.textAlign = "center";
	}
}
