﻿// JScript File
// Reload Page with new Url
function LoadHpl()
{
    var opt = document.getElementById('DropDownListStop');
    
    if (opt != null){
	var select = opt.options[opt.selectedIndex].text;
	var search = "&hpl=" + select;
        document.location.search = search;
    }
}

