// xp_progressbar
// Copyright 2004 Brian Gosselin of ScriptAsylum.com
//
// v1.0 - Initial release
// v1.1 - Added ability to pause the scrolling action (requires you to assign
//        the bar to a unique arbitrary variable).
//      - Added ability to specify an action to perform after a x amount of
//      - bar scrolls. This requires two added arguments.
// v1.2 - Added ability to hide/show each bar (requires you to assign the bar
//        to a unique arbitrary variable).

// var xyz = createBar(
// total_width,
// total_height,
// background_color,
// border_width,
// border_color,
// block_color,
// scroll_speed,
// block_count,
// scroll_count,
// action_to_perform_after_scrolled_n_times
// )

var N=-1;

function createBar(w,h,bgc,brdW,brdC,blkC,speed,blocks,count,action){
    
    var t='<div id="_xpbar'+(++N)+'" style="top:50%;visibility:visible; position:relative; overflow:hidden; width:'+w+'px; height:'+h+'px; background-color:'+bgc+'; border-color:'+brdC+'; border-width:'+brdW+'px; border-style:solid; font-size:1px;">'
            +'<span id="blocks'+N+'" style="left:-'+(h*2+1)+'px; position:absolute; font-size:1px">';
    for(i=0;i<blocks;i++){
        t+='<span style="background-color:'+blkC+'; left:-'+((h*i)+i)+'px; font-size:1px; position:absolute; width:'+h+'px; height:'+h+'px; '+'filter:alpha(opacity='+(100-i*(100/blocks))+')"></span>';
    }
    t+='</span></div>';

    document.write(t);

    var bA=document.getElementById('blocks'+N);
    bA.bar=document.getElementById('_xpbar'+N);
    bA.blocks=blocks;
    bA.N=N;
    bA.w=w;
    bA.h=h;
    bA.speed=speed;
    bA.ctr=0;
    bA.count=count;
    bA.action=action;
    bA.togglePause=togglePause;
    bA.showBar=function(){this.bar.style.visibility="visible";}
    bA.hideBar=function(){this.bar.style.visibility="hidden";}
    bA.tid=setInterval('startBar('+N+')',speed);
    return bA;
}

function startBar(bn){
    var t=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++;
        if(t.ctr>=t.count){
            eval(t.action);
            t.ctr=0;
        }
    }
    else 
        t.style.left=(parseInt(t.style.left)+t.h+1)+'px';
}

function togglePause(){
    if(this.tid==0){
        this.tid=setInterval('startBar('+this.N+')',this.speed);
    }else{
        clearInterval(this.tid);
        this.tid=0;
    }
}

function togglePause(){
    if(this.tid==0){
        this.tid=setInterval('startBar('+this.N+')',this.speed);
    }else{
        clearInterval(this.tid);
        this.tid=0;
    }
}

function BeginPageLoad(){
    document.body.style.cursor = "wait";
    //document.getElementById('wait_icon').style.visibility = 'true';
    document.getElementById('masterwait_icon').style.display = 'block';
}
