function setLogoSize() { screenSize = document.body.clientWidth; if (screenSize < 1000) { document.getElementById('logo1').style.visibility='hidden'; document.getElementById('logo2').style.visibility='visible'; } else { document.getElementById('logo2').style.visibility='hidden'; document.getElementById('logo1').style.visibility='visible'; } panelWidth = screenSize - 220; document.getElementById('leftpanel').style.width = panelWidth + 'px'; document.getElementById('leftpanel').style.visibility = 'visible'; } function closeAllButtons(){ document.getElementById('desc_back').style.visibility='hidden'; document.getElementById('contact_desc').style.visibility='hidden'; document.getElementById('studentweb_desc').style.visibility='hidden'; document.getElementById('guide_desc').style.visibility='hidden'; document.getElementById('contact_button2').style.visibility='hidden'; document.getElementById('contact_button').style.visibility='visible'; document.getElementById('guide_button2').style.visibility='hidden'; document.getElementById('guide_button').style.visibility='visible'; } function imgOn(buttonID,buttonID2,descID) { closeAllButtons(); document.getElementById(buttonID).style.visibility='hidden'; document.getElementById(buttonID2).style.visibility='visible'; document.getElementById('desc_back').style.visibility='visible'; document.getElementById(descID).style.visibility='visible'; } function imgOff(buttonID,buttonID2,descID) { document.getElementById(buttonID2).style.visibility='hidden'; document.getElementById(buttonID).style.visibility='visible'; document.getElementById('desc_back').style.visibility='hidden'; document.getElementById(descID).style.visibility='hidden'; } function popUpWindow(path) { popUpWindowSP = window.open(path, "openWin", "width=600,height=600,resizable,scrollbars,screenx=100,screeny=10,left=100,top=10"); window.popUpWindowSP.focus(); } function popUpVirtual(path) { popUpWindowSP = window.open(path, "openWin", "width=708,height=376,resizable,scrollbars,screenx=100,screeny=10,left=100,top=10"); window.popUpWindowSP.focus(); } function popUpTour(path) { popUpWindowSP = window.open(path, "openWin", "width=600,height=600,resizable,scrollbars,screenx=100,screeny=10,left=100,top=10"); window.popUpWindowSP.focus(); } function popUpNewTour(path) { popUpWindowSP = window.open(path, "openWin", "width=800,height=725,resizable,scrollbars,screenx=100,screeny=10,left=100,top=10"); window.popUpWindowSP.focus(); }