function focusInput(feld) {
  if (feld.value == feld.defaultValue)
    feld.value = '';
  }
function blurInput(feld) {
  if (feld.value == '')
    feld.value = feld.defaultValue;
  }
function Plakat() {
	var jetzt = new Date;
	window.document.images['plakat'].src='plakat.php?' + jetzt.getTime();
	window.setTimeout("Plakat()", 7000);
}
function handleForm() {
  if (self.innerHeight) {
    document.forms[0].Search.style.height='20px';
    document.forms[0].Search.style.width='142px';
    }
  //Plakat();
  }
