var fDesc=new Array();
fDesc[0] = "Prog-Studio is a modern, comprehensive, and very productive micro-controller development environment for industry standard 8051 (MCS-51) microcontroller architecture chips.
Features:
- Project Manager: Central Project Management and Multi-Processor Systems.
- Powerful Source Code Editor: Program more efficiently.
- Integrated Documentation Editor: Documentation “up to date”.
- Watchlists: Runtime variables under the developers control.
- Edit & Continue: For an increase in debugging efficiency that is unheard of.
- Makroassembler: For higher-performing programs.
- Monitoring: Full control of time and sequential outputs.
- Additional Information: Efficient help during programming.
- Hex-Editor: Comprehensive functions that leave nothing to be desired.
- Label-List: Find the desired label with one click.
- Error Reports: Detailed error messages help during the development process.
- Search and Replace: Including wildcards and normal expressions.
- State-of-the-Art IDE: Flexible window settings that leave nothing to be desired.";
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 = '';
}
}