// JavaScript Document
function show(){
var textname =document.getElementById("aaaaa");
textname.style.display = "block" ; 
hide1();
}
function hide(){
var textname =document.getElementById("aaaaa");
textname.style.display = "none" ; 
} 
function show1(){
var textname =document.getElementById("bbbb");
textname.style.display = "block" ; 
hide();
}
function hide1(){
var textname =document.getElementById("bbbb");
textname.style.display = "none" ; 
}
function show2(){
var textname =document.getElementById("cccccc");
textname.style.display = "block" ; 
hide();
}
function hide2(){
var textname =document.getElementById("cccccc");
textname.style.display = "none" ; 
}
function show3(){
var textname =document.getElementById("ddddddd");
textname.style.display = "block" ; 
hide();
}
function hide3(){
var textname =document.getElementById("ddddddd");
textname.style.display = "none" ; 
}

