// E-mail Hiders
// Belva
function email_lklv() {
    var name = "info";
    var host = "laffin-k";
				var ext = ".com";
    var delim = "\@";
    var href = "mailto:";
    var text = "\<a href='" + href + name + delim + host + ext + "'>" + name + delim + host + ext + "</a>";
document.write(text);
}
// The sister
function email_lkc() {
    var name = "sargefc";
    var host = "joimail";
				var ext = ".com";
    var delim = "\@";
    var href = "mailto:";
    var text = "\<a href='" + href + name + delim + host + ext + "'>" + name + delim + host + ext + "</a>";
document.write(text);
}

function NoBlanks(form) {
 if (form.unm.value == "") {
  alert("Please supply a name.");
  form.unm.focus();
  return (false);
  }
 if (form.uml.value == "") {
  alert("Please supply an email address.");
  form.uml.focus();
  return (false);
  }
 if (form.subject.value == "") {
  alert("Please supply a subject for the message.");
  form.subject.focus();
  return (false);
  }
 if (form.body.value == "") {
  alert("Please fill in the body of the message.");
  form.body.focus();
  return (false);
  }
 return (true);
 }

