

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 exp(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(10);

}

function exp_all()
{

 exp(0);
 exp(10);
 
}




