var fDesc=new Array();
fDesc[0] = "Yabause is a Sega Saturn emulator under GNU GPL. It currently runs on FreeBSD, GNU/Linux, Mac OS X, Windows, Dreamcast, PSP and Wii.
Yabause support booting games using Saturn cds or iso files.
Main features:
- Open source and extremely portable, many ports already exist for multiple platforms
- Ability to load CD images or run directly off a Saturn disk using an ordinary CD-ROM
- Debugging
- Multiple region emulation
- Cheat system";
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 = '';
}
}