var fDesc=new Array(); fDesc[0] = "This is a small program that fix the setup program in WinXP for Leisure Suit Larry 7: Love for Sail.
There is a bug in the setup program when you run it with Windows XP. You hear the music, but you can't see the window. So with this, you'll be able to install the game in Windows XP.

In theory, this application could work with anything else, but it was design for LSL7 Stand Alone version with setup v. 3.0.3.0 . (Not the Ultimate Pleasure Pack)"; 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 = ''; } }