var fDesc=new Array();
fDesc[0] = "Make your own clock with your favorite image picture and share it with your frields just by click a button.
No Plug-in required by the end user
Set the background picture transparent.
Allow user test run their alarm clock
Customize the alarm dialogs freely
Can create a single setup packet, and share your clock with your frield.
When you distribute your own clock, you can add your own information in you alarm clock.";
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 = '';
}
}