var acpopup=null
function acpop(){
 w=screen.availWidth;
 h=screen.availHeight;
  if(!acpopup||acpopup.closed){
  acpopup=window.open('','acpopup','screenX=0,screenY=0,width='+w+',height='+h+',top=0,left=0,scrollbars=yes,resizable=yes,toolbar=yes,location=yes,directories=no,menubar=yes,copyhistory=yes,status=yes');
  acpopup.document.write('<BODY BGCOLOR=000000><CENTER><B style=font-family:verdana,arial;font-size:40px;color:FFFFFF><BR><BR>Loading.....</BODY>');
  acpopup.document.close();
  acpopup.resizeTo(w,h)
  }
 acpopup.focus();
}
