function ShowTab(OBJ)
{
if (OBJ == '1')
{
list01.style.display = '';
list02.style.display = 'none';
list03.style.display = 'none';
list04.style.display = 'none';
list05.style.display = 'none';
}
else if (OBJ == '2')
{
list01.style.display = 'none';
list02.style.display = '';
list03.style.display = 'none';
list04.style.display = 'none';
list05.style.display = 'none';
}
else if (OBJ == '3')
{
list01.style.display = 'none';
list02.style.display = 'none';
list03.style.display = '';
list04.style.display = 'none';
list05.style.display = 'none';
}
else if (OBJ == '4')
{
list01.style.display = 'none';
list02.style.display = 'none';
list03.style.display = 'none';
list04.style.display = '';
list05.style.display = 'none';
}
else
{
list01.style.display = 'none';
list02.style.display = 'none';
list03.style.display = 'none';
list04.style.display = 'none';
list05.style.display = '';
}
}
var makeMainMidBoxS = document.all.makeMainMidBoxS;
makeMainMidBoxS.innerHTML = '';
var a = '';
a = a +"\n";
a = a +"
\n";
a = a +" \n";
a = a +" \n";
a = a +" \n";
a = a +" \n";
a = escape(a);
makeMainMidBoxS.innerHTML = a;
makeMainMidBoxS.innerHTML = unescape(makeMainMidBoxS.innerHTML);