﻿<!--
if (document.images)  // check to see if the browser can take images objects
{
// the variables
    EntertainmentOff = new Image
    EntertainmentOn = new Image
    SoftwareOff = new Image
    SoftwareOn = new Image
    PublishingOff = new Image
    PublishingOn = new Image
    ElectronicsOff = new Image
    ElectronicsOn = new Image
    
    
    
// the image source path
    EntertainmentOff.src = '/webdocuments/EN_SysOps_off.jpg'
    EntertainmentOn.src = '/webdocuments/EN_SysOps_on.jpg'
    SoftwareOff.src = '/webdocuments/EN_ContentProd_off.jpg'
    SoftwareOn.src = '/webdocuments/EN_ContentProd_on.jpg'
    PublishingOff.src = '/webdocuments/EN_OnlineStores_off.jpg'
    PublishingOn.src = '/webdocuments/EN_OnlineStores_on.jpg'
    ElectronicsOff.src = '/webdocuments/EN_CEMfrs_off.jpg'
    ElectronicsOn.src = '/webdocuments/EN_CEMfrs_on.jpg'
    
    
}
else // if an older version browser, then display nothing
{
    EntertainmentOn = " "
    SoftwareOn = " "
    PublishingOn = " "
    ElectronicsOn = " "
    document.Entertainment = " "
    document.Software = " "    
    document.Publishing = " "
    document.Electronics = " "
}
//-->
