// JavaScript Document

function setDims() {
	var storeWindowHeight = document.documentElement.clientHeight ? document.documentElement.clientHeight : (window.innerHeight ? window.innerHeight : document.documentElement) ;
	var bodyHeightString = String(storeWindowHeight) + "px";

	var myBody = document.getElementById("wrapper");
	myBody.style.minHeight = bodyHeightString;
}
function toggleinfo() {
	document.getElementById('note').style.display == 'block' ? document.getElementById('note').style.display='none' : document.getElementById('note').style.display='block';
}