var fDesc=new Array();
fDesc[0] = "San Francisco Clock is a free desktop application that shows you the current time in San Francisco, CA. Beside this the clock also includes many functions such as:
- Countdown - count day until your vacation or business trip in San Francisco
- Stopwatch - track your time effectively
- Timer - set the time to prepare for an important meeting or cook the best 3 minutes eggs.
- World Clock - see the time for different cities and countries in the world.
- Hourly Chimes - notifies you about starting a new hour with a gentle sound
- Skins - easy to change look and feel";
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 = '';
}
}