var fDesc=new Array();
fDesc[0] = "Phone Designer enables you to quickly customize Cisco Unified IP Phone displays with wallpapers of your choice and to create or change ringtones.
Main features:
- Customize your vibrant Cisco Unified IP Phone
color display by choosing from a variety of colorful
wallpapers included with the Phone Designer
application.
- Import your favorite pictures into the Phone
Designer application and edit them on your PC
before importing them onto your Cisco Unified IP
Phone.
- Preview the image on your Cisco Unified IP Phone
before sending the image to it.
- Choose from a library of ring tones supplied with
the Phone Designer application and download a
unique ring tone to your Cisco Unified IP Phone.
- Import an MP3 file from your music collection and
import a snippet of your favorite melody as your
unique Cisco Unified IP Phone ring tone.
- Listen to your personalized ring tone through the
Cisco Unified IP Phone speaker before importing
and saving it onto your phone.";
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 = '';
}
}