<!--

if (window != top) top.location.href = location.href;

var loaded = 0;
var gotlayers = 0;
var lastbutton='bmi';

NS4 = (document.layers) ? 1 : 0;
IE4 = (document.all) ? 1 : 0;
ver4 = (NS4 || IE4) ? 1 : 0;

function moveLayers(Item) {
        if (gotlayers) {
                if (NS4) {
						document.layers[Item].left = 115;
						document.layers[Item].top = 170;
                } else {
                        document.all[Item].style.pixelLeft = 115;
                        document.all[Item].style.pixelTop = 170;
                }
        }
}

function showMe(menuName,on) {
        if (gotlayers) {
                if (on) {
                        moveLayers(menuName);
                        if (NS4) {
                                document.layers[menuName].visibility = "show";
                        } else {
                                document.all[menuName].style.visibility = "visible";
                        }
                } else {
                        if (NS4) {
                                document.layers[menuName].visibility = "hide";
                        } else {
                                document.all[menuName].style.visibility = "hidden";
                        }
                }
        }
}

// -->

