
window.onload = function() {
	document.body.onclick = EnterMainSite;
}

function EnterMainSite() {
	window.location.href='indexpage.php';
}

