document.write ("<div id='bottomBar' style='height:19px'>")

document.write ("<div id='bottomLabelLeft'>")
document.write ("&copy; 2008 Data Innovations, Inc.")
document.write ("</div>")

document.write ("<div id='bottomLabelRight'>")
document.write ("1-888-GET-ER1S (438-3717)")
document.write ("</div>")

document.write ("</div>")

//bottomBar height MUST be set in the DIV tag for it to be read by this code. It does not pick up CSS.

var contentHeight = parseInt(document.all.contentBkgrnd.style.height);
var bottomBarHeight = parseInt(document.all.bottomBar.style.height);
var menuTop = contentHeight - bottomBarHeight;
document.all.bottomBar.style.top = menuTop;
