home *** CD-ROM | disk | FTP | other *** search
-
- <!--Copyright 2000 Macromedia, Inc. All rights reserved.-->
-
- //*************************API**************************
-
- function commandButtons(){
- return new Array(BTN_OK, "okClicked()",
- BTN_Cancel,"cancelClicked()",
- BTN_Help,"alert('Help for all dialogs will be added later by IMD')" );
- }
-
-
-
- //*******************LOCAL FUNCTIONS*********************
-
- function initializeUI(){
- var data = MM.commandArgument;
- document.theForm.username.value = data.username;
- document.theForm.password.value = data.password;
- }
-
- function cancelClicked(){
- MM.commandReturnValue = "";
- window.close();
- }
-
- function okClicked(){
- var dataObj = new Object();
- dataObj.username = document.theForm.username.value;
-
- if(dataObj.username)
- {
- if(StripChars(" ", document.theForm.username.value) == "")
- {
- alert(MM.MSG_EnterPassword);
- return;
- }
- }
- dataObj.password = document.theForm.password.value;
-
- MM.commandReturnValue = dataObj;
- window.close();
- }