var element= document.getElementById('splash-screen');
if(element)
{
	element.style.display = "none";
	//document.getElementsByTagName("body")[0].style.visibility = "hidden";
	//window.setTimeout("finish_splash_screen()",300);
}


function finish_splash_screen()
{
	//element.style.display = "none";
	//document.getElementsByTagName("body")[0].style.visibility="visible";

}


function splash_screen_on_submit()
{
		
	var element= document.getElementById('splash-screen');
	if(element)
	{
		element.style.display = "block";
		window.scrollTo(0, 0);
	}

}

function init_splash_screen_on_submit()
{
	var input_list = document.getElementsByTagName("input");
	for(i=0; i<input_list.length; i++) {
		if(input_list[i].type=="submit")
		{
			input_list[i].onclick = splash_screen_on_submit;
		}
	}	
}

init_splash_screen_on_submit();
