function infoPop() {
	var popup = document.getElementById("about-window");
	var winState = popup.getAttribute("class");
	if (winState == "window-off") {
		popup.setAttribute("class","window-on");
	} else {
		popup.setAttribute("class","window-off");
	}
}