var fDesc=new Array();
fDesc[1] = "YouTube website and going through the process of uploading on a site that has heavy viewership and usage. AVS YouTube uploader works in the background and supports the upload of multiple video files at the same time without interference.";
fDesc[2] = "YouTube account without having to go to the YouTube.com website. The program enables you to add file information of each video.";
fDesc[3] = "decorations, lets you add music and backgrounds. Supported output formats include: MP4, AVI, WMV, 3GP, WMV2 and the possibility to burn DVD discs.";
fDesc[5] = "its Facebook version and has been developed by the same author. You can utilize it from within the Windows Live Photo Gallery or from Windows Live Movie Maker.";
fDesc[6] = "register and go to the program link. After that you can download Firefox plugin and restart your browser, then go to multi-uploader page and upload a video that can be up to 10 minutes in length and up to 1GB in size.";
fDesc[8] = "drag and drop editing. !SMACK! makes uploading video fun! Upload to many SMACKB!Z video library sites. Choose your skin.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}