﻿function ddlNav(ddl) {
    if (ddl.options[ddl.options.selectedIndex].value != '') {
        window.location = ddl.options[ddl.options.selectedIndex].value;
    }
}