/*
var text;
var table;
var i;

function photo_name_size (){
  text=document.getElementById('photoname');
  table=document.getElementById('opacityt');
  i=text.offsetWidth;
  table.style.width=i+"px";
  table.style.display="block";
}

window.onload=photo_name_size;
*/
