/* -----------------------------------

  Think-Eco.org
  Typ: JS-Datei
  Stand: 27.11.2009
  Autor: Daniel Sitzmann

--------------------------------------*/

/* ----------------------------------------------------------------------------- */



function fillInputField(value) {

 var text_suche = "Suchbegriff eingeben...";
 var field = document.getElementById("sucheingabe");
 
 if(value=='erase') {
	if(field.value==text_suche) {
		field.value="";
		field.style.color = "#000000";
	}
    }

    if(value=='fill') {
	if(field.value=="") {
		field.value=text_suche;
		field.style.color = "#aaaaaa";
	}
    }
}


