var fDesc=new Array();
fDesc[0] = "The PersonalAlpha software lets you run your Alpha/OpenVMS software on a standard Personal Computer. Imagine running your VMS and Tru64 programs on your notebook and office or home PC. Develop, test and run OpenVMS/Tru64 applications wherever you are.
PersonalAlpha can be installed on personal computers that run Windows XP, Vista and Windows 7 (32 bit versions). It offers 128 MB of emulated Alpha memory, 1 Ethernet adapter, VT-terminal emulation and 4 disks. Minimum system requirements: PC or notebook with Intel or AMD processor (at least 1 GHz), 1 GB of memory is advised for proper system performance (512 MB will run with performance penalty), 1 Ethernet adapter and 4 GB of free disk space.";
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 = '';
}
}