function futureHome(){
  document.getElementById("fh").innerHTML = 'Future home of &nbsp; ' + document.domain;
}

if(window.addEventListener){
	window.addEventListener("load", futureHome, false);
}else if(window.attachEvent){
	window.attachEvent("onload", futureHome);
}
