<!--

// ===================================
// manager.js
//
// ===================================

function Sort(form, sort_by_text) {

	strSortBy = "txtSortBy=" + escape(sort_by_text);
	strLocation = document.location.href;
	
	if ( strLocation.indexOf('?') == -1) {
		strLocation = strLocation + "?" + strSortBy;
	} else {
		strLocation = strLocation + "&" + strSortBy;
	}
	document.location.href = strLocation;
}

-->