var fDesc=new Array();
fDesc[0] = "Download the Princess Countdown ConnectionSM and start escaping today with this fun, interactive desktop application!
Features:
-Watch the days, hours and minutes tick down until you sail!
-Share your countdown on Facebook and Twitter!
-View highlights, photographs and temperatures for the ports you'll visit.
-Watch your ship's bridge cam in real time and access interactive deck plans.
-Receive travel tips and alerts for Princess promotions as they're announced.";
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 = '';
}
}