<!--
document.writeln('<div id="waitDiv" style="z-index:200000;position:absolute;left:40%;top:40%;visibility:hidden">');
document.writeln('<table width="200" cellpadding="6" cellspacing="0" border=1 bgcolor=#FFFFFF bordercolor=#A41A9F>');
document.writeln('<tr><td align="center">');
document.writeln('<font color="#A41A9F" face=Arial size=4>Loading</font><br /><br>');
document.writeln('<img src="loading.gif" border="0" alt="">');
document.writeln('<br /><font color="#A41A9F" face=Arial size=2>Please wait..</font>');
document.writeln('<\/td><\/tr><\/table><\/div>');
var DHTML = (document.getElementById || document.all || document.layers);
function ap_getObj(name) {
if (document.getElementById) {
return document.getElementById(name).style;
} else if (document.all) {
return document.all[name].style;
} else if (document.layers) {
return document.layers[name];
}
}
function ap_showWaitMessage(div,flag) {
if (!DHTML)
return;
var x = ap_getObj(div);
x.visibility = (flag) ? 'visible':'hidden'
if(! document.getElementById)
if(document.layers)
x.left=280/2;
// return true;
}
ap_showWaitMessage('waitDiv', 1);
//--> 
