var fDesc=new Array();
fDesc[0] = "MonoGame is an Open Source implementation of the Microsoft XNA 4 Framework. It can be used with all Mono compilers and with Visual Studio.
Main Features:
- Custom effects.
- PVRTC support for iOS.
- iOS supports compressed songs.
- Skinned meshs.
- VS2012 templates.
- Closer XNA 4 compatibility.";
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 = '';
}
}