function IsFormValid3() {
var IsFormValid = false;
if (document.mailform.article.value !== "" )
{
IsFormValid = true;
}
if (IsFormValid == false) DisplayErrors3();
return IsFormValid;
}

function DisplayErrors3() {
alert("Please type of paste your comment into the main text box - you may leave a comment anonymously if you wish");
}

function FormRedirect(){
setTimeout('this.document.location.href = "thanks.html"',2000);}