var fDesc=new Array();
fDesc[0] = "Sony RAW Driver is a simple and handy program created to allow displaying Sony RAW data (ARW/SR2/SRF files) on Windows Vista/Windows 7.
By installing this program, you can display the RAW data on Explorer or Photo Gallery in Windows Vista/Windows 7 in the same way as JPEG files.
Sony RAW Driver is freeware.
Sony RAW Driver - neat, handy, simple and free tool that will allow displaying Sony RAW data (ARW/SR2/SRF files) on Windows Vista/Windows 7.";
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 = '';
}
}