
<!--

function exp_coll(ind)

{
 s = document.getElementById("sp_" + ind);
 i2 = document.getElementById("im2_" + ind);

 if (s.style.display == 'none')

 {
   s.style.display = 'block';
   i2.src = "../../images/blanco.gif";
 }

 else if (s.style.display == 'block')
 {
   s.style.display = 'none';
   i2.src = "../../images/blanco.gif";
 }
}


function coll_all()
{

  ind = 2;
  x = document.getElementById("sp_" + ind);
  x.style.display = 'none';
  if (x.style.display == 'none')
  {
    document.getElementById("im2_" + ind).src = "../../images/blanco.gif";
  }

  ind = 4;
  x = document.getElementById("sp_" + ind);
  x.style.display = 'none';
  if (x.style.display == 'none')
  {

    document.getElementById("im2_" + ind).src = "../../images/blanco.gif";
  }

  ind = 6;
  x = document.getElementById("sp_" + ind);
  x.style.display = 'none';
  if (x.style.display == 'none')
  {

    document.getElementById("im2_" + ind).src = "../../images/blanco.gif";
  }

  ind = 8;
  x = document.getElementById("sp_" + ind);
  x.style.display = 'none';
  if (x.style.display == 'none')
  {

    document.getElementById("im2_" + ind).src = "../../images/blanco.gif";
  }

  ind = 10;
  x = document.getElementById("sp_" + ind);
  x.style.display = 'none';
  if (x.style.display == 'none')
  {

    document.getElementById("im2_" + ind).src = "../../images/blanco.gif";
  }

}



function exp_all()
{

  ind = 2;
  x = document.getElementById("sp_" + ind);
  x.style.display = 'block';
  if (x.style.display == 'block')
  {

    document.getElementById("im2_" + ind).src = "../../images/blanco.gif";
  }

  ind = 4;
  x = document.getElementById("sp_" + ind);
  x.style.display = 'block';
  if (x.style.display == 'block')
  {

    document.getElementById("im2_" + ind).src = "../../images/blanco.gif";
  }

  ind = 6;
  x = document.getElementById("sp_" + ind);
  x.style.display = 'block';
  if (x.style.display == 'block')
  {

    document.getElementById("im2_" + ind).src = "../../images/blanco.gif";
  }

  ind = 8;
  x = document.getElementById("sp_" + ind);
  x.style.display = 'block';
  if (x.style.display == 'block')
  {

    document.getElementById("im2_" + ind).src = "../../images/blanco.gif";
  }

  ind = 10;
  x = document.getElementById("sp_" + ind);
  x.style.display = 'block';
  if (x.style.display == 'block')
  {

    document.getElementById("im2_" + ind).src = "../../images/blanco.gif";
  }



}

function resizeIframe(frameName) {
  try {
    var body = window.frames[frameName].document.body; 
    if(body) {
      var ifrm = document.getElementById(frameName);
      if (ifrm) {
        ifrm.style.height = (body.scrollHeight || body.offsetHeight) + 20 + 'px';
      }
    }
  }
  catch (e) {
    // Ignore this for now
  }
}

function resizeIframeA(frameName) {
  try {
    var body = window.frames[frameName].document.body; 
    if(body) {
      var ifrm = document.getElementById(frameName);
      if (ifrm) {
        ifrm.style.width = (body.scrollwidth || body.offsetwidth) + 20 + 'px';
      }
    }
  }
  catch (e) {
    // Ignore this for now
  }
}

-->


