File: /home/nyiet8349bzl/Backup/sbc_back/homedir/public_html/old-myadmin/library/myalumni.js
// JavaScript Document
function viewOrder()
{
statusList = window.document.frmOrderList.cboOrderStatus;
cource = statusList.options[statusList.selectedIndex].value;
if (cource != '') {
window.location.href = 'index.php?cource=' + cource;
} else {
window.location.href = 'index.php';
}
}
function modifyOrderStatus(orderId)
{
statusList = window.document.frmOrder.cboOrderStatus;
status = statusList.options[statusList.selectedIndex].value;
window.location.href = 'processOrder.php?action=modify&OId=' + orderId + '&status=' + status;
}