

/**
* Make modifications to the sort column and sort order.
*/
function reSortData( sortColumn ) {
if ( sortColumn == document.form_searchSort_report.hd_sortCol.value ) {
// The same column was selected. Toggle the sort order.
if ( document.form_searchSort_report.hd_sortOrd.value == 'ASC' ) {
document.form_searchSort_report.hd_sortOrd.value = 'DESC';
} else {
document.form_searchSort_report.hd_sortOrd.value = 'ASC';
}
} else {
// A different column was selected.
document.form_searchSort_report.hd_sortCol.value = sortColumn;
document.form_searchSort_report.hd_sortOrd.value = 'ASC';
}
// Submit the form.
document.form_searchSort_report.submit();
}


