var fDesc=new Array();
fDesc[0] = "SPML Editor provides a simple and intuitive user interface for creating and editing a SIM Profile Mark-Up Language(uxp) specification.
The current telecom environment is constantly evolving, and with this comes more and more complexity. Defining card profiles has become complicated with no one particular format used. This lack of coherence makes it difficult for Network Operators to specify and share card profiles. To rectify this, the industry requires a unique format of document to simplify the definition of card specifications.
Card vendors and network operators have got together to a unified XML format called SIM Profile Mark-Up Language (SIMpml), otherwise known as uxp. This makes it easier to define the file system content, card manager parameters, OTA parameters, secret codes, applets, etc.
This format defines within the SIMAlliance is fully interoperable.";
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 = '';
}
}