var fDesc=new Array();
fDesc[0] = "Getting married in style is expensive and so Jill and Mike plan to expand their business to Europe to pay for their wedding. While Jill and Mike dream of a bright and happy future someone steals their wedding rings, invaluable family heirlooms. All traces lead to a dark secret in Jill's past. Join Jill and Mike on a journey through Europe and into the darker parts of Jill's past.";
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 = '';
}
}