Hello,

Please help me here. I have NEVER worked with these div tags, but what I want to do is display a message like "Loading please wait" and then the rest of my page.

I have a page with a whole lot of select boxes which takes long to load and want to display a message while it all loads - something like..

Code:
.
.
.
<div id="TranLoading" style="position:absolute; left: 0px; top: 0px; visibility: hidden">
		<table height=100 width=100%>
			<tr>
				<td valign=bottom align=center>
					<font face="Arial, Verdana, Helvetica" size=4 color=#001a70>
					<b>Please wait!!</b>
				</td>
			</tr>
		</table>
	</div>


<div id="tranloaded">

//here I'll show all my select boxes

</div>
How do I do this??

Thanks,
T