Try this. In the javascript that goes in the head of the document, find this function:
Code:
function loadpage(page_request, containerid){
if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1))
document.getElementById(containerid).innerHTML=page_request.responseText
}
and replace it with this:
Code:
function loadpage(page_request, containerid){
if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1)) {
document.getElementById(containerid).innerHTML=page_request.responseText
}
else {
document.getElementById(containerid).innerHTML = '<img src="loading.gif"> Loading Content...';
}
}
Change the part in red to your "Loading Message" and the location of the image. Hope this helps.
Bookmarks