document.write('<scr'+'ipt type="text/JavaScript" src="/fileadmin/templates/js/udm-resources/udm-custom.js"></scr'+'ipt>');
document.write('<scr'+'ipt type="text/JavaScript" src="/fileadmin/templates/js/udm-resources/udm-control.js"></scr'+'ipt>');
document.write('<scr'+'ipt type="text/JavaScript" src="/fileadmin/templates/js/udm-resources/udm-style.js"></scr'+'ipt>');                
document.write('<scr'+'ipt type="text/JavaScript" src="/fileadmin/templates/js/sifr.js"></scr'+'ipt>'); 

//Erase the standard text in the textbox. If nothing is entered the standard text will be displayed again.

//the function starts when the whole site is loaded
window.onload = init;

//Label for the search field
var stValue ="Suchbegriff eingeben"

function init() {	
  if (SearchTerm = document.getElementById('search_term')) {  
    SearchTerm.value = stValue;
		SearchTerm.onfocus = emptyValue;
		SearchTerm.onblur = refillValue;
	}
}

function emptyValue() {
	if (SearchTerm.value == stValue) {
    SearchTerm.value ="";
		SearchTerm.style.backgroundColor ="#FFD2DA";
	}
}

function refillValue() {
	if (SearchTerm.value =="") {
		SearchTerm.value = stValue;
		SearchTerm.style.backgroundColor ="#FFFFFF";
	}
}



