var fDesc=new Array();
fDesc[0] = "Why do the properties of your own constructed Macromedia programs say that the copyright belongs to Macromedia ? You're the one that made this program isn't it ?
Why does your first delivery say it's already version 7.0 ?
Want to make your product really YOUR product ?
Versiown replaces the version info of a Macromedia Director or Flash projector into info that you choose yourself.
Versiown ALSO replaces the standard icon of a Macromedia Director or Flash projector into one that you choose yourself. Give your projects a more personal & professional touch!
Versiown consist of an easy-to-use wizard interface, which turns the replacement of the file's properties and icon into a 1 minute job.
In fact, almost any executable file's icon and properties can be altered with the help of Versiown.
Additionally, Versiown is capable of removing the right-click menu and the top menu bar of Flash executables.";
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 = '';
}
}