// JavaScript Document

function splash(idsplash){
	
	document.getElementById(idsplash).style.display = 'block';
	document.getElementById(idsplash).style.height = '100%';
	document.body.style.height = '2000px';
	document.body.style.overflow = 'hidden';
}

function displaySplashBox(idsplashbox){	
	document.getElementById(idsplashbox).style.display = 'block';
}

function splashClose(idsplash){
	
	document.getElementById(idsplash).style.display = 'none';
	document.body.style.height = '';
	document.body.style.overflow = '';	
}

function splashCloseBox(idsplashbox){	
	document.getElementById(idsplashbox).style.display = 'none';
}