// Add disclaimer and back to top link to all pages

var mol = window.onload;
window.onload = function() {
if (mol) mol();

var disc = 'This Web site and its health-related information and resources are NOT intended to be a substitute for professional medical advice or for the care that patients receive from their physicians. Access to and use of these and any other Web sites, including the information, services, products, materials and any other resources contained on them, are solely at the user\'s own risk. Please consult your healthcare provider before undertaking any form of medical treatment, exercise program or dietary changes.';
var nv1 = document.getElementById('nav1');

for (var i=0; i<4; i++) {
  nv1 = nv1.parentNode;
}

var ap = document.createElement('P');
ap.className = 'backtotopContainer';

var a = document.createElement('A');
a.href = '#top';
a.innerHTML = 'Back to Top';
a.className = 'backtotop';

ap.appendChild(a);

var hr = document.createElement('HR');
hr.className = 'disclaimerHR';
nv1.appendChild(hr);

var p = document.createElement('P');
p.className = 'disclaimer';
p.innerHTML = disc;
nv1.appendChild(p);
nv1.appendChild(ap);
}
