	function show(id)
	{
	document.getElementById(id).style.display = "block";    
	}

	function hide(id)
	{
	document.getElementById(id).style.display = "none";
	}
	
	window.setTimeout('hide("mainframe")',100);
	
	window.setTimeout('show("mainframe")',7000);
	
	window.setTimeout('show("startlayer")',200);

	window.setTimeout('hide("startlayer")',7000);