﻿function SetSelectValue(selectName, value) {
    var selectObject = document.getElementById(selectName);
    for(index = 0; index < selectObject.length; index++) {
        if(selectObject[index].value == value) selectObject.selectedIndex = index;
    }
}

function removeAddedTitles(compareInputID) {
    document.getElementById(compareInputID).value ='';
    document.chart.removeAddedTitles();
    return false;
}

