var fDesc=new Array();
fDesc[0] = "Migration Specialties is pleased to offer FreeAXP, a technology demonstrator and free Alpha emulator. FreeAXP is designed to be hosted on a Windows x86 and x64 systems. This virtual Alpha solution offers the following key features:
-AlphaServer 400 emulation
-OpenVMS support
-Tru64 Unix support
-Native 32 and 64-bit host O/S support
-Simple configuration
-Free for commercial and personal use
-No expiry date";
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 = '';
}
}