<!-- Begin
function floatButton () {
if (document.all) {
document.all.scrollmenu.style.pixelTop = document.body.scrollTop;
}
else if (document.layers) {
document.scrollmenu.top = window.pageYOffset;
}
else if (document.getElementById) {
document.getElementById('scrollmenu').style.top = window.pageYOffset + 'px';
   }
}
if (document.all)
window.onscroll = floatButton;
else
setInterval ('floatButton()', 100);
function initButton () {
if (document.all) {
document.all.scrollmenu.style.pixelRight = document.body.clientWidth - document.all.scrollmenu.offsetWidth;
document.all.scrollmenu.style.visibility = 'visible';
}
else if (document.layers) {
document.topButton.Right = window.innerWidth - document.scrollmenu.clip.width - 15;
document.topButton.visibility = 'show';
}
else if (document.getElementById) {
document.getElementById('scrollmenu').style.right = (window.innerWidth - 35) + 'px';
document.getElementById('scrollmenu').style.visibility = 'visible';
   }
}
//  End -->