var fDesc=new Array();
fDesc[0] = "Insider Tales: The Stolen Venus 2 — Investigate side-by-side with Francesca, equipped with just your wits and Francesca’s desire to resume her holiday, talk to witnesses to get hints, have a meal in Palermo, and explore all the beauty of the Mediterranean!
The luxury cruise ship "Empire" is boarded by rich tourists, a world-renowned exhibition and a thief. Soon the highlight of the exhibition is stolen and Francesca di Porta, the famous art-robbery expert, is disturbed in her well-earned holiday to investigate undercover and prevent a panic among the passengers!";
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 = '';
}
}