My application needs approx. 10 sec before the loading is done. I do not wish to show the page, before all loading is done, how can this be solved?
I also wish an indetication of the status shown in a bar, is that possible?
I do not want to show start.asp before the entire page is loaded.

My code is:
Code:
<HTML>
<HEAD>
<link href="default.css" rel="stylesheet" type="text/css">
<TITLE></TITLE>
<script>
function redirect() {
location.href ="start.asp";
} 
function start()
{
setTimeout("redirect()", 2000);
}
</script> 
</head>
<body onload="javascript:start()"> 
<table width="85%" align="center" height=95%>
	<tr>
		<td colspan="2" align="center" valign="center"><img src="logo_trans.bmp">
		<br><h1>Velkommen til Logstor Prisberegning</h1></td>
	</tr>
</table>
</body>
</html>