var fDesc=new Array();
fDesc[0] = "With Bronze tools you have four utilities :
- IconEdit2 ( Icon Editor)
IconEdit2 is an award-winning easy-to-use and powerful icon editor and icon maker software. It supports various file formats.
You can paint, undo/redo, search for icons in your files, and create new icons instantly by capturing screen areas. You can also create and edit buddy icons .
- Twin Folders
Twin Folders is an award-winning file and folder synchronization utility. It is able to synchronize or backup your files. It is easy to use. One click backup is a reality.
- Bronze Disc Burner
Bronze Disc Burner is an easy-to-use and powerful CD/DVD/Blu-ray recording software. User interface is simple and straightforward. You can easily create Data discs, Bootable data discs, MP3 discs, and DVD-video with Bronze Disc Burner. You can also copy discs, create disc image files, and write disc image files to discs.
- Bronze Disc Copy
Bronze Disc Copy is an easy-to-use CD/DVD/Blu-ray copying software. User interface is simple and straightforward. It allows creating an exact copy of your disc with few mouse clicks.";
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 = '';
}
}