var fDesc=new Array();
fDesc[0] = "Resource Workshop is the original installation disks for this very good (if aging) resource compiler/editor.
A project is a collection of one or more resources. A project is stored in a file that contains one or more resources, or refers to files containing resources, or both. Typically, this file is a resource compiler (.RC) script file.
Here are some of the tasks related to managing the projects you create with Resource Workshop: -Creating a new project
-Embedding a resource in a project
-Linking a resource to a project
-Opening an existing project
-Saving a project
-Using the Project Window";
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 = '';
}
}