var fDesc=new Array();
fDesc[0] = "Get the new Panamera onto your screen. The screensavers are compatible with Microsoft Windows and Apple Mac OS X.
The screensaver presents a nice 3D exterior view of Porsche’s new 4 door sedan. Characteristic of the new Panamera are the black double slats on the side air intakes in the front apron and a rear apron diffuser with black-grained finish. The new Panamera is identifiable by the titanium-colored double slats and a rear apron diffuser with fins.";
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 = '';
}
}