﻿function DropDownMoveTo(dd) {
    if (dd != null) {
        if (dd.options[dd.selectedIndex].value.length > 0) {
            window.location.href = dd.options[dd.selectedIndex].value;
        }
    }
    return true;
}
