/**
 * @author reinderdevries
 */

window.onload = function() {
	document.getElementById('front').onclick = showModal;
	document.getElementById('link2').onclick = showModal;
	document.getElementById('closebutton').onclick = hideModal;
}

var showModal = function() {
	var mbg = document.getElementById('mbg');
	mbg.style.display = 'block';
	
	var modal = document.getElementById('modal');
	modal.style.display = 'block';
};

var hideModal = function() {
	mbg = document.getElementById('mbg');
	mbg.style.display = 'none';
	
	modal = document.getElementById('modal');
	modal.style.display = 'none';
}
