// JavaScript Document

function viewOrder()
{
	statusList = window.document.frmOrderList.cboOrderStatus;
	status     = statusList.options[statusList.selectedIndex].value;	
	
	if (status != '') {
		window.location.href = 'index.php?pg=order&status=' + status;
	} else {
		window.location.href = 'index.php?pg=order';
	}
}

