// JavaScript Document
function exp_coll(ind)

{
 s = document.getElementById("sp_" + ind);
 i = document.getElementById("im_" + ind);
 if (s.style.display == 'none')
 {
   s.style.display = 'block';
   i.src = "images/minus.gif";
 }
 else if (s.style.display == 'block')
 {
   s.style.display = 'none';
   i.src = "images/plus.gif"; 
 }
}

function expd(ind)
{
 s = document.getElementById("sp_" + ind);
 i = document.getElementById("im_" + ind);

 if (!(s && i)) return false;
 s.style.display = 'block';
 i.src = "images/minus.gif";

}

function coll(ind)
{
 s = document.getElementById("sp_" + ind);
 i = document.getElementById("im_" + ind);

 if (!(s && i)) return false;
 s.style.display = 'none';
 i.src = "images/plus.gif";

}

function coll_all()
{

 coll(0);
 coll(12);
 coll(16);
 coll(26);
 coll(31); 
}

function exp_all()
{

 expd(0);
 expd(12);
 expd(16);
 expd(26);
 expd(31);
 
}
