var fDesc=new Array();
fDesc[0] = "Project Description
This windows application lets you manage a Microsoft Reporting Servicer server. It supports both SQL 2000,SQL 2005 and SQL 2008, even when running in SharePoint Integration mode.
Currenly it allows you to:
-Download reports stored on the server, optionally including any (sub)folders by recreating the folder structure on the server by selecting a folder on the server. It will then download all reports and subfolders to the client.
-Upload multiple reports to the server, optionally you can upload a folder structure to the report server by selected a folder with reports and subfolders stored on the client.
-Get detailed information about the items on the server, like used datasources, parameters and permissions.
-Create and delete folders on the server.
-Move reports, datasources and folders.";
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 = '';
}
}