document.write("");
function addToBottom(){
var addedHTML=" ";
var divAlignment="center";
var newDiv=document.createElement("DIV");
newDiv.align=divAlignment;
newDiv.innerHTML=addedHTML;
document.getElementsByTagName("BODY")[0].appendChild(newDiv);
}
window.onload=addToBottom;