// Contact form input checking code

function checkform ( form )
                               {
    if (form.email.value == "") {
    alert( "hwl | e-mail address is not valid" );
    form.email.focus();
    return false ;
  }
else if (form.subject.value == "")
	{
		// something else is wrong
		alert("hwl | message title missing");
                form.subject.focus();
		return false;
	}
else if (form.message.value == "")
	{
		// something else is wrong
		alert("hwl | message content missing");
                form.message.focus();
		return false;
	}

  return true ;
}
