// JavaScript Document

function checkAuth() {
	var auth = String(window.location);
	var auth2 = auth.substr(auth.length-1, auth.length);
	if (auth2=="y") {
		document.getElementById("gauze").style.display = 'none';
		document.getElementById("alerter").style.display = 'none';
		document.body.style.overflow = 'auto';
	} else {
		document.getElementById("gauze").style.display = 'block';
		document.getElementById("alerter").style.display = 'block';
		document.body.style.overflow = 'hidden';
	}
}
function letsGo() {
	window.location = "../index.html";
}
