var fDesc=new Array();
fDesc[0] = "Al Emmo and the Lost Dutchman's Mine is an adventure game, reminiscent of Sierra's and LucasArts' celebrated classics.
Features:
- over 100 hand painted, high-resolution background
- 3D pre-rendered character animations
- over 24 detailed dialogue portraits
- 3D pre-rendered cut scenes
- 2D comic book cut scenes
- dynamically changing background music, for a unique gaming experience each and every time
- special environmental effects
- thousands of unique and humorous background commentary
- over 7000 lines of dialogue
- unique inventory interactions with each character
- voiced narration
- lip-synched voice overs
- easy to use, classic style, point and click interface etc.";
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 = '';
}
}