var fDesc=new Array();
fDesc[0] = "Gold Calculator Platinum Edition gives you a fast and easy approach for all calculations and weight conversion needs.
It computes gold, silver, sterling, platinum and gives a complete breakdown in kilo's, ounces, dwt (pennyweight), grains, grams and total pure ounces.
It calculates any karat desired and give a complete price and weight breakdown.";
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 = '';
}
}