function view_big_image_simple(menustate)
{
  if (document.getElementById)
  {
    var box;
    box = document.getElementById('image_big');
    box.style.visibility = menustate;
    var box2;
    box2 = document.getElementById('image_big_inner');
    box2.style.visibility = menustate;
  }
  else
  {
    var box;
    box = document['image_big'];
    box.visibility = menustate;

    var box2;
    box2 = document['image_big_inner'];
    box2.visibility = menustate;
  }
}

function view_big_image(pic, menustate)
{
  if (document.getElementById)
  {
    var box;
    box = document.getElementById('image_big');
    box.style.visibility = menustate;
    var box2;
    box2 = document.getElementById('image_big_inner');
    box2.style.visibility = menustate;
    var img;
    img = document.getElementById('image_big_self');
    img.src = pic;
  }
  else
  {
    var box;
    box = document['image_big'];
    box.visibility = menustate;

    var box2;
    box2 = document['image_big_inner'];
    box2.visibility = menustate;

    var img;
    img = document['image_big_self'];
    img.visibility = menustate;
  }
}


