/* Search streamer textfield clearer onFocus and onSubmit */
function abSearchEmptyDefaultText(theTextField) {
    if (theTextField.value === 'Skriv in ditt sökord här') {
        theTextField.value = '';
        theTextField.style.color = '#000';
    }
    return true;
}

function clearHiddenSectionFields() {
	function clear(name) {
		if (document.getElementById(name)) {
			document.getElementById(name).value = "";
		}
	}
    clear("abSearchFSection1");
    clear("abSearchFSection2");
    clear("abSearchFSection3");
    clear("abSearchFSection4");
	clear("abSearchFDate");
    return true;
}
