var b;

function look_comm(a){

  if(document.getElementById("comment_"+a).style.display=="none") {
    document.getElementById("comment_"+a).style.display="";
    if(b) {
      document.getElementById("comment_"+b).style.display="none";
    }
    b = a;
  }
  else {
    if(b != a) { 
      document.getElementById("comment_"+a).style.display="none";
    }
  }
}

function isValidEmail(str) {
  return (str.indexOf(".") > 2) && (str.indexOf("@") > 0);
}


function validate_comm_form(f) {

    if (f.author.value == "") {
        alert("Lūdzu, ievadiet savu vārdu!");
        return false;
    }
    
    if (!isValidEmail(f.email.value)) {
        alert("Lūdzu, ievadiet korekto e-pasta adresi!");
        return false;
    }
    
    if (f.comment.value == "") {
        alert("Lūdzu, ievadiet savu komentāru!");
        return false;
    }
    
    return true;
}
