var fDesc=new Array();
fDesc[0] = "NewBlue Filters Recreate is a preset based workflow to create classic film or TV series styles in seconds. Recreate the classic film bleach bypass look, with a high contrast, harsh and fade effects. Make your daytime movie look like it was filmed at night. Add a soft glow to change the color and focus of your image. Create retro and metallic-looking images with 2 chrome-like colors.
Modify color and lighting to reproduce a particular film stock or create a unique mood. Add a warm, vintage look with a cinematic 35mm grain. Control size, noise strength and blend modes.";
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 = '';
}
}