// JavaScript Document
// Showing the Hidden Page after Loading the Contents 

function showPage()

{
	document.body.style.display = 'block'; 
}

window.onload = showPage;