var fDesc=new Array();
fDesc[0] = "This is a White Balance plug-in for Sony Vegas Pro 10.
The FBmn Software's White Balance plug-in provides high quality results compared to what you can achieve with built-in Sony tools like the Sony White Balance or the Sony Color Corrector.
The way it works is quite simple:
- Drag the effect to the clip you want to adjust
- From the plug-in property sheet, use the color-picker tool to pick in the preview window a color which you want to serve as the reference white
- Adjust the brightness so that all details can remain visible, with the maximum level of light for the whole scene
The plug-in comes with a standard Windows setup program to install it on your environment.
The evaluation license is fully functional for 7 days. After this period, you will be proposed to purchase a perpetual license with a special launch offering.";
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 = '';
}
}