var w3c=(document.getElementById)?true:false;
var ie=(document.all)?true:false;
var N=-1;
var blocks=25;
if(document.all)var w=155;
else var w=157;
if(document.all)var h=7;
else var h=5;
function pgLoad(){
if(document.getElementById){
document.getElementById('prepage').style.visibility='hidden'
}else{
if(document.layers){
document.prepage.visibility='hidden'
}else{
document.all.prepage.style.visibility='hidden'
}
}
bar.hideBar()
}
function createBar(){
if(ie||w3c){
var t='<table><tr><td style=font-family:arial;font-size:9px;color:#637F69>LOADING<td><div id="_xpbar'+(++N)+'" style="position:relative;visibility:visible;overflow:hidden;width:'+w+'px;height:'+h+'px;background-color:#000000;border-color:#637F69;border-width:1px;border-style:solid">';
t+='<span id="blocks'+N+'" style="left:-'+(h*2+1)+'px;position:absolute">';
for(i=0;i<blocks;i++){
t+='<span style="background-color:#00FF00;left:-'+((h*i)+i)+'px;font-size:1px;position:absolute;width:'+h+'px;height:'+h+'px; '
t+=(ie)?'filter:alpha(opacity='+(100-i*(100/blocks))+')':'-Moz-opacity:'+((100-i*(100/blocks))/100);
t+='"></span>'
}
t+='</span></div></table>';
document.write(t);
var bA=(ie)?document.all['blocks'+N]:document.getElementById('blocks'+N);
bA.bar=(ie)?document.all['_xpbar'+N]:document.getElementById('_xpbar'+N);
bA.blocks=blocks;
bA.N=N;
bA.w=w;
bA.h=h;
bA.ctr=0;
bA.showBar=function(){
this.bar.style.visibility="visible"
}
bA.hideBar=function(){
this.bar.style.visibility="hidden"
}
bA.tid=setInterval('startBar('+N+')',45);
return bA
}
}
function startBar(bn){
var t=(ie)?document.all['blocks'+bn]:document.getElementById('blocks'+bn);
if(parseInt(t.style.left)+t.h+1-(t.blocks*t.h+t.blocks)>t.w){
t.style.left=-(t.h*2+1)+'px';
t.ctr++
}
else t.style.left=(parseInt(t.style.left)+t.h+1)+'px';
}
