// This code handles alert boxes for the main menu

/////////////////////////////////////////
// specific routines that switch screens
/////////////////////////////////////////
////////////////////////////////////
// Author: SP
// Date:   11/99
// Name:   WMainMenu.js
// Version: 1.0
////////////////////////////////////

var VERSION_NUMBER = 1;


// display the reports page
//////////////////////////
function ShowReports() {
//////////////////////////
	alert("Reports not implemented at this time...");
}

// display the orders page
//////////////////////////
function ShowOrders() {
//////////////////////////
	alert("Orders not implemented at this time...");
}

// display the documents page
/////////////////////////////
function ShowDocuments() {
/////////////////////////////
	alert("Documents not implemented at this time...");
}

// display the maintenance page
/////////////////////////////
function ShowMaintenance() {
/////////////////////////////
	alert("User maintenance not implemented at this time...");
}

