//------------------------------------------------------------------------------
// Standard client functions
//------------------------------------------------------------------------------
function PAG_Initialize()
{
} // PAG_Initialize
//------------------------------------------------------------------------------
function PAG_Terminate()
{
} // PAG_Terminate
//------------------------------------------------------------------------------
function PAG_DoMenuCommand(url)
{
	PAG_SaveFormState();

	document.frmMain.PAG_Command.value = "JUMPTO";
	document.frmMain.jumpToURL.value = url;
	document.frmMain.submit();

	// Dont jump to url on exit from this onclick event.
	// The server-side code will do this after saving the form state.
	return false;

} // PAG_DoMenuCommand
//------------------------------------------------------------------------------
function PAG_SaveFormState()
{
	// save anything that is not already in an INPUT field

} // PAG_SaveFormState
//------------------------------------------------------------------------------

//------------------------------------------------------------------------------
// Page-Specific client functions
//------------------------------------------------------------------------------
function cmdOK_onclick()
{
	PAG_SaveFormState();
	document.frmMain.PAG_Command.value = "OK";
	document.frmMain.submit();
} // cmdOK_onclick
//------------------------------------------------------------------------------
function form_onsubmit()
{
	return false;
} // form_onsubmit
//------------------------------------------------------------------------------

