﻿//<!--
  function formValidate(form) 
  {
	if ( form.suche.value == "" ) {
       	   alert('Asta La Vista Baby !');
		   form.suche.focus();
	   return false;
	   }

	return true;
  }
// -->