Without testing but, using my knowledge of DHTML scripting, I'd try changing this:
Code:
page_request.onreadystatechange=function(){
loadpage(page_request, containerid)
}
to:
Code:
document.getElementById(containerid).innerHTML='Loading Page'
page_request.onreadystatechange=function(){
loadpage(page_request, containerid)
}
The part:
could be HTML, if desired:
Code:
<table align="center" width="100%" height="100%"><tr><td align="center" valign="middle" width="100%" height="100%">Loading Page</td></tr></table>
This would work well with a container for the content that is, say - a division with a set width and height.
Bookmarks