// JavaScript Document

var currIdB3 = 'reportB3Default';
function swap_div1B3(div_id) {  
    if(currId) 
        document.getElementById(currIdB3).style.display = 'none'; 
    document.getElementById(div_id).style.display = 'block'; 
    currIdB3 = div_id; 
}; 

var currIdB2 = 'reportB2Default';
function swap_div1B2(div_id) {  
    if(currId) 
        document.getElementById(currIdB2).style.display = 'none'; 
    document.getElementById(div_id).style.display = 'block'; 
    currIdB2 = div_id; 
}; 

var currIdB = 'reportBDefault';
function swap_div1B(div_id) {  
    if(currId) 
        document.getElementById(currIdB).style.display = 'none'; 
    document.getElementById(div_id).style.display = 'block'; 
    currIdB = div_id; 
}; 

var currIdA = 'reportADefault';
function swap_div1a(div_id) {  
    if(currId) 
        document.getElementById(currIdA).style.display = 'none'; 
    document.getElementById(div_id).style.display = 'block'; 
    currIdA = div_id; 
}; 

var currId = 'reportOneDefault';
function swap_div1(div_id) {  
    if(currId) 
        document.getElementById(currId).style.display = 'none'; 
    document.getElementById(div_id).style.display = 'block'; 
    currId = div_id; 
};  

var currIdTwo = 'reportTwoDefault';
function swap_div2(div_id) {  
    if(currId) 
        document.getElementById(currIdTwo).style.display = 'none'; 
    document.getElementById(div_id).style.display = 'block'; 
    currIdTwo = div_id; 
};  

var currIdThree = 'reportThreeDefault';
function swap_div3(div_id) {  
    if(currId) 
        document.getElementById(currIdThree).style.display = 'none'; 
    document.getElementById(div_id).style.display = 'block'; 
    currIdThree = div_id; 
};  

var currIdFour = 'reportFourDefault';
function swap_div4(div_id) {  
    if(currIdFour) 
        document.getElementById(currIdFour).style.display = 'none'; 
    document.getElementById(div_id).style.display = 'block'; 
    currIdFour = div_id; 
};  

var currIdFive = 'reportFiveDefault';
function swap_div5(div_id) {  
    if(currIdFive) 
        document.getElementById(currIdFive).style.display = 'none'; 
    document.getElementById(div_id).style.display = 'block'; 
    currIdFive = div_id; 
};  
