﻿// JScript File

function RedirectWithDDLValues(countryDDLId, businessDDLId)
{
    countryDD=document.getElementById(countryDDLId);
    businessDD=document.getElementById(businessDDLId);
    
    var countryId=countryDD.options[countryDD.selectedIndex].value;
    var btId=businessDD.options[businessDD.selectedIndex].value;
    
    var newUrl=window.location.toString();    

    var pos=newUrl.indexOf('&countryId')
    if (pos>-1)
    {
        newUrl=newUrl.substring(newUrl, pos);
    }
    
    newUrl=newUrl + '&countryId=' + countryId + '&btId=' + btId;    
    
    window.location=newUrl;
    

}

