/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Sandeep Gangadharan | http://www.sivamdesign.com/scripts/ */

if (document.getElementById){
document.write('<style type="text/css">.texter {display:none; border-left: white 20px solid; margin-bottom: 12px;}</style>')}

/*  To add another FAQ answer it must reference this "a(n)" list.  Add another a(n) to this list, where n is the next number in the sequence, then use that a(n) in the proper location in the FAQ.html to get the answer to collapse  */

var divNum =new Array("a1","a2","a3","a4","a5","a6","a7","a8","a9","a10","a11","a12","a13","a14","a15","a16","a17","a18","a19");

function openClose(theID) {
 for(var i=0; i<divNum.length; i++){
  if(divNum[i] == theID) {
   if(document.getElementById(divNum[i]).style.display == "block") {
document.getElementById(divNum[i]).style.display= "none" }
   else {
    document.getElementById(divNum[i]).style.display = "block"
  }
 } else {
  document.getElementById(divNum[i]).style.display = "none";}
 }
}

