// functions to modify layout for wide windows                     //

function setWindow() {
    var windowWidth = getWindowWidth()
    var windowHeight = getWindowHeight()
	if (windowHeight < 845) {
        document.getElementById("wrapper").className = "window_medium"
//      document.getElementById("logo").className = "logo_mid"
		if (windowHeight < 745) {
	        document.getElementById("wrapper").className = "window_small"
//	        document.getElementById("logo").className = "logo_high"
		}
	}
    else {
		document.getElementById("wrapper").className = "window_big"
//		document.getElementById("logo").className = "logo_low"
	}
    
	if (windowWidth < 930) {
        document.getElementById("holder").className = "window_narrow"
	}
    else {
		document.getElementById("holder").className = "window_wide"
	}
} //setWindow
