function ShowDropDowns()
{
    var allDropDowns = document.getElementsByTagName('select');
    for (var cnt=0; cnt < allDropDowns.length; cnt++) {
        allDropDowns[cnt].disabled = false;
	}
	document.getElementById('companyInfoArea').style.visibility = 'visible';
	document.getElementById('partnerArea').style.visibility = 'visible';
}

function HideDropDowns()
{
    var allDropDowns = document.getElementsByTagName('select');
    for (var cnt=0; cnt < allDropDowns.length; cnt++) {
        allDropDowns[cnt].disabled = true;
	}
	document.getElementById('companyInfoArea').style.visibility = 'hidden';
	document.getElementById('partnerArea').style.visibility = 'hidden';
}

function HideFlash()
{
	var flashDiv = document.getElementById('flashArea');
	flashDiv.style.visibility = 'hidden';
	flashDiv.innerHTML = '';
	document.getElementById('HHOarea0').focus();
	
    ShowDropDowns();
}

function ShowFlash (sectionId) {
	if((segImg.length == segmentNames.length) || (promoImg.length == segmentNames.length)) {
		
		HideDropDowns();
		
		var flashDiv = document.getElementById('flashArea');
		var hhoCateg = '<span class=\"screenReading\" id=\"flashHeaderInfo\">Home and Home Office Presentation</span>';
		
		hhoCateg += mediaSmartTVflash;
				
		flashDiv.innerHTML = hhoCateg;
		flashDiv.style.visibility = 'visible';
		
	} else {
		setTimeout('ShowFlash(' + sectionId + ')',10);
	}
}

// 20070913