var fDesc=new Array();
fDesc[0] = "Main Features of the Kakadu Doorbell
- possibility of uploading your own sounds - the doorbell is equipped with USB port and it can be connected to a PC to load your own chimes from WAV & MP3 files
- up to 50 various chimes in one doorbell
- outstanding quality of fully realistic sound without any compromises";
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 = '';
}
}