var fDesc=new Array();
fDesc[0] = "Labs SCJSD 6 Training Lab includes:
- Training Lab provides enough information about Java EE 6 JSP and Servlet OCE certification/exam objectives.
- Set goals against each Java EE 6 JSP and Servlet OCE exam topics for your preparation.
- Set schedule for your preparation and measure your progress.
- Basic Sessions (e-book format) and Quiz for each Java EE 6 JSP and Servlet OCE Certification objectives";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}