function ShowDiv(obj, _id)
{
_id = document.getElementById(_id);
if (_id.style.display == 'none')

{
obj.style.background = 'url(~/media/Images/B/BAE-AR2009/Images/hide.ashx) no-repeat scroll right top';
_id.style.display = 'block';

}

else{
obj.style.background = 'url(~/media/Images/B/BAE-AR2009/Images/reveal.ashx) no-repeat scroll right top';
_id.style.display = 'none';
}

}


function ShowDiv_BOD(obj, _id)
{
_id = document.getElementById(_id);
//alert(_id.className);
if (_id.className.search(' gedhide') > 0)

{
_id.className = _id.className.replace('gedhide' ,'_gedhide_');
obj.style.background = 'url(~/media/Images/B/BAE-AR2009/Images/hide.ashx) no-repeat scroll right top';
_id.style.display = 'block';

}

else{
	_id.className = _id.className.replace(' _gedhide_' ,' gedhide');
obj.style.background = 'url(~/media/Images/B/BAE-AR2009/Images/reveal.ashx) no-repeat scroll right top';
_id.style.display = 'none';
}

}


function ShowDiv_FAQ(obj, _id)
{
_id = document.getElementById(_id);
//alert(_id.className);
if (_id.className.search(' faqhide') > 0)

{
_id.className = _id.className.replace('faqhide' ,'_faqhide_');
obj.style.background = 'url(~/media/Images/B/BAE-AR2009/Images/hide.ashx) no-repeat scroll right top';
_id.style.display = 'block';

}

else{
	_id.className = _id.className.replace(' _faqhide_' ,' faqhide');
obj.style.background = 'url(~/media/Images/B/BAE-AR2009/Images/reveal.ashx) no-repeat scroll right top';
_id.style.display = 'none';
}

}

