﻿
function toggleKBQuestion(AnswerDiv, QuestionLinkP)
{

   var QuestionLinkP = document.getElementById(QuestionLinkP);


  if(document.getElementById(AnswerDiv).style.display == "none"){
  
    QuestionLinkP.className = "crisis_questions2";
    OpenDiv(AnswerDiv);
    
  }else{
      
    QuestionLinkP.className = "crisis_questions3";
    CloseDiv(AnswerDiv);
    
  }
}

function toggleRateAnswerTellAFriend(thisDiv, OtherDiv)
{
    var thisDiv = document.getElementById(thisDiv);
    var OtherDiv = document.getElementById(OtherDiv);

    /* Make sure the other div (either tell a friend or rate answer) is closed before opening this */
    if (OtherDiv.style.display == "block")
    {
        OtherDiv.style.display = "none";
    }
    
    
    
   if(thisDiv.style.display == "none"){
     thisDiv.style.display = "block";    
  }else{  
     thisDiv.style.display = "none";
    
  }
    

}