home *** CD-ROM | disk | FTP | other *** search
- var groupname;
- var contact;
-
- function AimRenameBuddyWndOnLoad()
- {
- groupname=window.arguments[0];
- contact=window.arguments[1];
- doSetOKCancel(RenameBuddy, 0); // xul overlay
- if(contact) {
- var title=document.getElementById("RenameBuddy").getAttribute("title");
- document.getElementById("RenameBuddy").setAttribute("title", title+contact)
- // window.document.getElementById("fldContactName").value=contact;
- return;
- }
- }
-
- function RenameBuddy()
- {
- var fldDisplay = top.document.getElementById("fldDisplayName");
- var display = fldDisplay.value;
-
- if (display == "") {
- // Display name field should not be empty
- aimErrorBox(aimString("msg.EnterNonEmptyDisplay"));
- return;
- }
-
- if ((display - 0) > 0) {
- // Display name field should not be a number - enough with icq numbers!
- aimErrorBox(aimString("msg.EnterCharDisplay"));
- return;
- }
- aimBuddyManager().RenameBuddy(groupname, contact, display);
- window.close();
-
- }
-
-