
document.write('<div id="branding" style="position: absolute; visibility: show; left: -221; top: -64; z-index: 2; width: 232; height: 75">\n');
document.write('<img src="/custom/design/21/B-logo-full.png" border="0" onload="checkLocation();">\n');
document.write('</div>\n');

imgwidth=232;  // logo width, in pixels
imgheight=75;  // logo height, in pixels
logo = document.getElementById('branding').style;

function checkLocation() {
	logo.left = document.body.clientWidth  - imgwidth  + document.body.scrollLeft   ;
	logo.top  = document.body.clientHeight - imgheight + document.body.scrollTop  -3;
	setTimeout("checkLocation()",10);
}



