function showHide(id)
{
  myID = document.getElementById(id);
  if(myID.style.display == "")
    myID.style.display = "none";
  else myID.style.display = "";
}
function checkComment(postcomment)
{
  name = eval('document.'+postcomment+'.name.value');
  email = eval('document.'+postcomment+'.email.value');
  verify = eval('document.'+postcomment+'.verify.value');
  comment = eval('document.'+postcomment+'.comment.value');
  
  submit = eval('document.'+postcomment+'.submit');
  
  if(name!='' && email!='' && comment!='' && verify!='')
  {
    submit.disabled=false;
    submit.className="inputsubmit1";
  }
  else
  {
    submit.disabled=true;
    submit.className="inputsubmit1disabled";
  }
}
function verifyHuman(postcomment)
{
  verify = eval('document.'+postcomment+'.verify.value');
  
  if(verify!="6ne3")
  {
    alert("Verification string incorrect!");
    return false;
  }
  
  return true;
}