function disablePhotos() {

  if ($('disablephotos')) {
    var h1 = new Number($('photos').offsetHeight);
   // $('photos').style.height = h1;
  }
}

function enablePhotos() {

  if ($('disablephotos')) {
    $('disablephotos').className='hidden';
  }
}

