/* 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:#E3F2F7 40px solid; color:#35758F; font: .9em verdana, arial, helvetica, sans-serif; font-size:12px;}</style>') }

  var divNum = new Array("a00","a01","a02","a03","a04","a05","a06","a07","a08","a09","a10","a11","a12","a13","a14","a15","a16","a17","a18","a19","a20"); 
  			// at the left you should add a1, a2 etc. for each header you wish to include
            // so if you want 4 headers you should add a1, a2, a3, a4 in the format shown
            // enclosed in double quotes

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" }
  } 
  
  }
}

//Expand All Command
function expandAll(theID) {
  if (document.getElementById("a00").style.display == "block") 
  	{   for(var i=0; i < divNum.length; i++) 
  		{ document.getElementById(divNum[i]).style.display = "none" }
  	}
  	else
  	{   for(var i=0; i < divNum.length; i++) 
  		{ document.getElementById(divNum[i]).style.display = "block" }
  	}
}

