


function valForm()
{
  var result = "";

  var txt = "You have not fully completed the form\n\nPlease check these inputs:\n\n";

  var warn = new Array();
  warn[0] = "* Name\n";
  warn[1] = "* E-Mail\n";
  warn[2] = "* Message\n";

  var F = document.forms[0];

//////////////////////////////////////////////////////

  if (F.name.value.length < 1)
  {
    result += warn[0];
  }

//////////////////////////////////////////////////////

  if (F.email_1.value.length < 1)
  {
    result += warn[1];
  }

//////////////////////////////////////////////////////

  if (F.mssg.value.length < 1)
  {
    result += warn[2];
  }

//////////////////////////////////////////////////////

   if(result.length > 0)
   {
     alert(txt + result + "\n__________________\n\nThanks!");

     return false;
   }
     else
     {
       return true;
     }
}

