var pnode = document.createElement("P");
pnode.style.position = "absolute";
pnode.style.left = "75px";
pnode.style.bottom = "2px";
pnode.style.color = "gray";
pnode.style.paddingLeft = "20px";

var brnode = document.createElement("BR");
var txtnode1 = document.createTextNode("Homeowners Plumbing & Supply | 10107 Bergin Road | Howell, MI 48843");
var txtnode2 = document.createTextNode("Phone 810.632.7701 | Fax 810.632.7708 | email ");

var anchornode = document.createElement("A");
anchornode.setAttribute("CLASS", "body_anchor");
anchornode.style.color = "gray";
anchornode.href = "mailto:sales@homeownersplumbing.net";
var txtnode3 = document.createTextNode("sales@homeownersplumbing.net");
anchornode.appendChild(txtnode3);

pnode.appendChild(txtnode1);
pnode.appendChild(brnode);
pnode.appendChild(txtnode2);
pnode.appendChild(anchornode);
var maindiv = document.getElementById("main_space")
maindiv.appendChild(pnode);
