﻿// JScript File

function showDescription(obj)
{
obj.style.visibility = 'visible';
obj.style.height = 'auto';
}

function hideDescription(obj)
{
obj.style.visibility = 'hidden';
obj.style.height = '0px';
}

function toggleDescription(obj)
{
if (obj.style.visibility == 'hidden' || obj.style.visibility == '') showDescription(obj);
else hideDescription(obj);
return false;
}

function toggleAll(doc)
{
showDescription(doc.getElementById('gmailinteg'));
showDescription(doc.getElementById('yahoointeg'));
showDescription(doc.getElementById('mailtointeg'));
showDescription(doc.getElementById('single'));
showDescription(doc.getElementById('desktop'));
showDescription(doc.getElementById('detection'));
showDescription(doc.getElementById('customname'));
showDescription(doc.getElementById('multiple'));
showDescription(doc.getElementById('signature'));
showDescription(doc.getElementById('browsers'));
showDescription(doc.getElementById('zip'));
showDescription(doc.getElementById('dropio'));
showDescription(doc.getElementById('support'));
showDescription(doc.getElementById('basket'));
showDescription(doc.getElementById('resize'));
showDescription(doc.getElementById('autorecipients'));
showDescription(doc.getElementById('dropio-advanced'));
return false;
}