function hover(obj, name) { obj.src = "sample3_2_files/" + name + "_hover.jpg"; } function restore(obj, name) { obj.src = "sample3_2_files/" + name + ".jpg"; } function hoverIndex(obj, name) { obj.src = "sample3_2_files/" + name + "_hoverIndex.jpg"; } function hover2(obj, name) { obj.src = "sample3_2_files/" + name + "_hover.jpg"; } function restore2(obj, name) { obj.src = "sample3_2_files/" + name + ".jpg"; } var currentLocation = ""; function displayLocation(location) { if (currentLocation != "") { document.getElementById(currentLocation).style.display = "none"; } document.getElementById(location).style.display = "block"; currentLocation = location; } function displayExecutive(location) { if (currentLocation != "") { document.getElementById(currentLocation).style.display = "none"; } document.getElementById(location).style.display = "block"; currentLocation = location; } function launch() { var newWindow = window.open("home.htm", "_blank", "width=900,height=700,menubar=no,toolbar=no,status=no,resizable=no"); } function displayPop(page) { var newWindow = window.open(page, "_blank", "width=665,height=622,menubar=no,toolbar=no,status=no,scrollbars=yes,resizable=yes"); } function goHome() { window.close(); window.opener.location.href = "../index.htm"; }