function viewAddress() {
	address_to_replace=document.getElementById("e").firstChild; 
	real_address=address_to_replace.nodeValue.replace("[(at)]", "@");
	address_to_replace.nodeValue=real_address;
	address_to_replace.parentNode.setAttribute("href", "mailto:"+real_address);
}

function moveImg(imgName) {
    alert("------------" + navigator.appName);
  if (navigator.appName.indexOf("Microsoft Internet Explorer") == -1 ) {
      alert("----IE--------" + navigator.appName);
      imgObject = document.getElementById(imgName);
      alert("------------" + navigator.appName);
        classAttribute = imgObject.removeAttribute("class");
  }
}

window.onload = function() {
//	setNodeContent();
//   moveImg('deskiImg');
    viewAddress();
}
