
/**
 *  Packaged-up so we've got everything in one place
 *
 *  2006-11-21, Dan Bettles, Created
 */

var FLASH_VERSION_REQUIRED = 7;

var ID_FLASH_BANNER = 'homePage_flash_banner';

var ID_FLASH_FEATURES = 'homePage_flash_features';

var ID_NO_FLASH_MESSAGE = 'noFlashMessage';

var ID_NO_FLASH_MESSAGE_PROBLEM = 'noFlashMessage_problem';


/*
 *  Returns TRUE if the correct version of Flash is installed or FALSE 
 *  otherwise
 */
function flashInstalled()
{
    var aVerReqd = [ FLASH_VERSION_REQUIRED, 0, 0 ];
    var oFlashVerReqd = new com.deconcept.PlayerVersion (aVerReqd);
    var oFlashVerInst = com.deconcept.FlashObjectUtil.getPlayerVersion();
    return oFlashVerInst.versionIsValid (oFlashVerReqd);
}


function setInnerHtml (p_elementId, p_html)
{
    var oElement = document.getElementById (p_elementId)
    if (oElement)  oElement.innerHTML = p_html;
}


function hideElement (p_elementId)
{
    var oElement = document.getElementById (p_elementId)
    if (oElement)  oElement.style.display = 'none';
}