function discuss() {
myform = window.document.form2;

if ( myform.yzm.value == "" )
{
   window.alert("You must include image code to initiate a new post.");
   myform.yzm.focus();
   return false;
}
if ( myform.content.value == "" )
{
window.alert("You must include your comments or questions to initiate a new post.");
myform.content.focus();
return false;
}
return true;
}


function TellCheck()
{
   el = window.document.mail;
   if (el.emails.value == '') {
      alert("You must enter at least one email address of your friend.");
      el.emails.focus();
      return false;
   }
   else
      return true;
}


function resetCheck ()
{
        var confirm_reset = window.confirm("Clear your Message?");
        if (confirm_reset)
        {
            document.forms[1].name.value = "";
			document.forms[1].email.value = "";
			document.forms[1].subject.value = "";
			document.forms[1].comments.value = "";
        }
}

function checkEmail(myForm) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(myForm.email.value)){
return (true)
}
alert("Invalid E-mail Address! Please re-enter.")
document.form2.email.focus();
return (false)
}