<!--

Browser = navigator.appName;
	Verze = parseInt(navigator.appVersion);
	if ((Browser == "Netscape" && Verze >=3) || (Browser == "Microsoft Internet Explorer" &&
	Verze >= 3)) ScriptsOn = 1;
		else ScriptsOn = 0;

function ellenoriz(theForm)
{
  if (theForm.send_name.value == "")
  {
    alert("Please provie your name!");
    theForm.send_name.focus();
    return (false);
  }

  if (theForm.send_email.value == "")
  {
    alert("Please provide your e-mail address!");
    theForm.send_email.focus();
    return (false);
  }

  if (theForm.recipname_1.value == "")
  {
    alert("Field 'Name of your acquaintance 1' has not been filled in!");
    theForm.recipname_1.focus();
    return (false);
  }

  if (theForm.recipemail_1.value == "")
  {
    alert("Field 'E-mail of your acquaintance 1' has not been filled in!");
    theForm.recipemail_1.focus();
    return (false);
  }
}
//-->

