﻿function redirectMarketAndViewPage(id){//alert(id);

    var ndSelect = document.getElementById(id);//alert(ndSelect.tagName + "\n" + ndSelect.id + "\n" + ndSelect.value);
    
    if (ndSelect != null && (ndSelect.tagName == "SELECT" && ndSelect.value != "")){ //alert(ndSelect.value);
    
        window.location = ndSelect.value;
    }
}


