Mensaje de precarga. Sencillo y efectivo.
CSS:
<style type="text/css">
#loading {
width: 200px;
height: 100px;
background-color: #c0c0c0;
position: absolute;
left: 50%;
top: 50%;
margin-top: -50px;
margin-left: -100px;
text-align: center;
}
</style>
javascript:
<script type="text/javascript">
document.write('<div id="loading"><br><br>Por favor aguarde...</div>');
window.onload=function(){
document.getElementById("loading").style.display="none";
}
</script>




