// JavaScript Document
function hideSplash(){	
	document.getElementById("bgDark").style.display = "none" ;
	document.getElementById("splash").style.display = "none";
}

function showSplash(){
	
	if (window.innerWidth || window.innerHeight) { docwidth = window.innerWidth ; docheight = window.innerHeight ; }	//Opera Netscape 6 Netscape 4x Mozilla
	if (document.body.clientWidth || document.body.clientHeight) { docwidth = document.body.clientWidth ; docheight = document.body.clientHeight ;	}	//IE Mozilla		

	
	e = document.getElementById("splash");	
	e.style.left = ((docwidth)  / 2) + "px" ; 
	e.style.top  = '10%';
	e.style.display = "block";
	
	f = document.getElementById("bgDark");
	/*f.style.width  = screen.width  + "px" ;*/
	f.style.height = screen.height + "px";
	f.style.display = "block";
	
	f.onclick = function(){this.style.display='none';e.style.display='none';}
	
}
