﻿// JScript File
function getImage(iconObjectId, themePath, iconsList, iconId)
{
    var obj = document.getElementById(iconObjectId);

    if(iconId < iconsList.length)
    {
        obj.src = themePath + 'images/' + iconsList[iconId];
    }
    else
    {
        obj.src = themePath + 'images/' + iconsList[0];
    }
}
