function setFlashHeight(divId, divH)
{
	document.getElementById(divId).style.height = divH + 'px';
}

function setFlashWidth(divId, divW)
{
	document.getElementById(divId).style.borderLeft = ( divW > 110 ) ? 'none' : '10px solid #FFF';
	document.getElementById(divId).style.width = divW + 'px';
}

function setFlashDim(divId, divW, divH)
{
	document.getElementById(divId).style.width = divW + 'px';
	document.getElementById(divId).style.height = divH + 'px';
}

function setFlashWidthRollLeft(divId, divW)
{
	document.getElementById(divId).style.width = divW + 'px';
}

function setDivHolderVisible()
{
	document.getElementById('xl_container_banner_still').style.overflow = 'visible';
}