function photoCheck() {
   var img = document.getElementById("photo");
   if (img != null && ( !img.complete || (typeof img.naturalWidth != "undefined" && img.naturalWidth == 0) ) ) {
      var pdiv = document.getElementById("photoContainer");
      if (pdiv != null) { pdiv.style.display = "none"; }
      var ddiv = document.getElementById("detailContainer");
      if (ddiv != null) {
         ddiv.style.padding = "0 0 15px 0";
         ddiv.style.width = "535px";
         // ddiv.style.border = "1px dotted red";
      }
   }
}

window.onload = photoCheck;