function loadV() {
var load = window.open('video.htm', 'video360','width=820,height=608,location=no,status=no,menubar=no,toolbar=no,resizable=no,scrollbars=no,screenX=10,screenY=10,top=10,left=10');
}
function switchImageTo(obj) {var im0=document.getElementById("img00"); var blankurl="blank.jpg";var newUrl=new String(obj.src);newUrl=newUrl.toLocaleLowerCase();var swap=newUrl.indexOf(blankurl);if (swap==-1) im0.src = obj.src;}
function switchHelpTo(obj) {var im0=document.getElementById("MENUhelp"); var blankurl="blank.jpg";var newUrl=new String(obj.src);newUrl=newUrl.toLocaleLowerCase();var swap=newUrl.indexOf(blankurl);if (swap==-1) im0.src = obj.src;}
function switchCloseTo(obj) {var im0=document.getElementById("MENUclose"); var blankurl="blank.jpg";var newUrl=new String(obj.src);newUrl=newUrl.toLocaleLowerCase();var swap=newUrl.indexOf(blankurl);if (swap==-1) im0.src = obj.src;}
function switchNavTo(obj) {var im0=document.getElementById("NavButton"); var blankurl="blank.jpg";var newUrl=new String(obj.src);newUrl=newUrl.toLocaleLowerCase();var swap=newUrl.indexOf(blankurl);if (swap==-1) im0.src = obj.src;}
function loadP() {
var load = window.open('photos.htm', 'photos','width=640,height=900,location=no,status=no,menubar=no,toolbar=no,resizable=yes,scrollbars=yes,screenX=10,screenY=10,top=10,left=10'); }

menu_status = new Array(); 
function LshowHide(theid){
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);

        if(menu_status[theid] != 'show') {
           switch_id.className = 'show';
           menu_status[theid] = 'show';
        }else{
           switch_id.className = 'hide';
           menu_status[theid] = 'hide';
        }
    }
}

function Lshow(theid){
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);

        if(menu_status[theid] != 'show') {
           switch_id.className = 'show';
           menu_status[theid] = 'show';
        }
    }
}

function Lhide(theid){
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);

        if(menu_status[theid] != 'hide') {
           switch_id.className = 'hide';
           menu_status[theid] = 'hide';
        }
    }
}