// clearLoading


document.write("<span id='loadingpage'><table height="100%" width="100%" 
border="0"><tr height="100%"><td width="100%" align="center" 
valign="middle"></td></tr></table></span>");

var progressTimeID = setTimeout("top.logframe.document.getElementById
('loadingpage').innerHTML='<table height="100%" width="100%" border="0"><tr 
height="100%"><td width="100%" align="center" valign="middle">One moment, 
please . . .</td></tr></table></span>';", 1500);

function clearLoading() {
clearTimeout(progressTimeID);
document.getElementById('loadingpage').innerHTML="";
}