window.onload = function callOnLoad(){        /* EVERY PAGE SHOULD HAVE THIS: */    setupNavMenus();        /*     NOT EVERY PAGE WILL HAVE THE FOLLOWING ELEMENTS *//*     THEREFORE THEY NEED TO BE TESTED FOR */    if(document.getElementById("passID")){/*         alert('exists'); */        focusForm();        CookieCheck();    }/*     else{ *//*             alert('does not exists'); *//*     } */}function setupNavMenus(){    var menus = new Array("familyPhotos", "familyMembers", "heritage", "tenthMountain", "skiHistory");    InitializeMenus(menus);}function focusForm(){    document.the_form.PassID.focus();}function CookieCheck(){/*     alert('checking cookie'); */}