var fDesc=new Array();
fDesc[0] = "Question types: Multiple choice questions (MCQ's), Multiple choice single answer, Multiple choice multiple answer, Drag and drop & Simulations (optional)
This exam measures your ability to accomplish the technical tasks listed below. The percentages indicate the relative weight of each major topic area on the exam.
-
Building a User Interface by Using Basic Techniques (23%)
-
Enhancing a User Interface by Using Advanced Techniques (21%)
-
Managing Data at the User Interface Layer (23%)
-
Enhancing the Functionality and Usability of a Solution (17%)
-
Stabilizing and Releasing a Solution (17%)";
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 = '';
}
}