// JavaScript Document
function tab_on2(divname){
var currTabElem = document.getElementById('tab2_' + divname); 
var currClass = currTabElem.className;
currTabElem.setAttribute("class", currClass + "_over"); 
currTabElem.setAttribute("className", currClass + "_over"); 
}
function tab_off2(divname){
var currTabElem = document.getElementById('tab2_' + divname); 
var currClass = currTabElem.className;
currTabElem.setAttribute("class", currClass.replace(/_over/,"")); 
currTabElem.setAttribute("className", currClass.replace(/_over/,"")); 
}

function hideDiv2(divname) { 
if (document.getElementById) { // DOM3 = IE5, NS6 
document.getElementById('div2_' + divname).style.visibility = 'hidden'; 
tab_off2(divname);
} 
else { 
if (document.layers) { // Netscape 4 
document.hideshow.visibility = 'hidden'; 
} 
else { // IE 4 
document.all.hideshow.style.visibility = 'hidden'; 
} 
} 
} 
 
function showDiv2(divname) { 

if (document.getElementById) { // DOM3 = IE5, NS6 
document.getElementById('div2_' + divname).style.visibility = 'visible'; 
tab_on2(divname);

} 
else { 
if (document.layers) { // Netscape 4 
document.hideshow.visibility = 'visible'; 
} 
else { // IE 4 
document.all.hideshow.style.visibility = 'visible'; 
} 
} 
}

function hideall2() {
hideDiv2('1');
hideDiv2('2');
hideDiv2('3');
hideDiv2('4');
hideDiv2('5');
}
