home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 December / PCWorld_2006-12_cd.bin / komunikace / netscape / nsb-install-8-1-2.exe / chrome / aim.jar / content / aim / RenameBuddy.js < prev    next >
Text File  |  2006-01-06  |  1KB  |  38 lines

  1. var groupname;
  2. var contact;
  3.  
  4. function AimRenameBuddyWndOnLoad()    
  5. {
  6.   groupname=window.arguments[0];
  7.   contact=window.arguments[1];
  8.   doSetOKCancel(RenameBuddy, 0);        // xul overlay
  9.     if(contact) {
  10.     var title=document.getElementById("RenameBuddy").getAttribute("title");
  11.     document.getElementById("RenameBuddy").setAttribute("title", title+contact)
  12.         // window.document.getElementById("fldContactName").value=contact;
  13.     return;
  14.   }
  15. }
  16.  
  17. function RenameBuddy()
  18. {
  19.     var fldDisplay = top.document.getElementById("fldDisplayName");
  20.     var display = fldDisplay.value;
  21.  
  22.   if (display == "") {  
  23.       // Display name field should not be empty
  24.       aimErrorBox(aimString("msg.EnterNonEmptyDisplay"));
  25.       return;    
  26.   }
  27.  
  28.   if ((display - 0) > 0) {
  29.       // Display name field should not be a number - enough with icq numbers!
  30.       aimErrorBox(aimString("msg.EnterCharDisplay"));
  31.           return;
  32.     }
  33.   aimBuddyManager().RenameBuddy(groupname, contact, display);
  34.   window.close();
  35.   
  36. }
  37.  
  38.