function photoChange(imgElementId,url,realurl)
{
  imgElement=document.getElementById(imgElementId);
  while(tmp_throbbler=document.getElementById("throbbler"))
    tmp_throbbler.parentNode.removeChild(tmp_throbbler);
  throbbler=document.createElement("img");
  throbbler.setAttribute("id","throbbler");
  throbbler.src="/throbbler.gif";
//  throbbler.style.cssText="top: 25px; left:20px; background-color: transparent; border: 0px; opacity:0.9;";
//  throbbler.style.cssText="position: relative; margin:0; padding:0; top: -60px; left: 10px; background-color: transparent; border: 0px; opacity:0.9;";
  throbbler.style.cssText="position:absolute; bottom: 20px; right: 20px; background-color: transparent; border: 0px; opacity:0.9;";
  imgElement.parentNode.appendChild(throbbler);
  imgElement.onload=function(){ document.getElementById("throbbler").parentNode.removeChild(document.getElementById("throbbler")); };
  imgElement.onclick=function(){ location.href=realurl; };
  imgElement.src=url;
}