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 >
Wrap
Text File
|
2006-01-06
|
1KB
|
38 lines
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();
}