var fDesc=new Array();
fDesc[0] = "The Windows Script Component Wizard automates the process of creating a script component (.wsc) file.
Main Features:
- Creates the .wsc file and adds basic XML elements
- Prompts for and creates registration information
- Prompts for the type of interface handler you want the script component to use
- Prompts for properties you want to expose and creates the necessary elements in the scripting language you specify
- Prompts for methods you want to expose and creates the necessary elements in the scripting language you specify
- Prompts for events that the script component can fire and creates the skeleton event elements";
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 = '';
}
}