// JavaScript Document
function submitEmail(){
//alert("sorry, this function will be active soon");
if(document.emaillist.email.value == ""){
alert("Please include a valid email address.");
document.emaillist.email.focus()
}else{
document.emaillist.submit();
}
}

function submitComment(){
//alert("sorry, this function will be active soon");
if(document.contact.email.value == ""){
alert("Please include a valid email address so that we may respond to your comment if needed.");
document.comment.email.focus()
}
else if(document.contact.comment.value == ""){
alert("Please include a comment when using this form, Thank You.");
document.comment.comment.focus()
}else{
document.comment.submit();
}
}