home *** CD-ROM | disk | FTP | other *** search
- var addr;
- var senton;
-
- function InviteRemindOnLoad() {
- addr=window.arguments[0];
- senton=window.arguments[1];
- setInviteField(addr,senton)
- }
-
- function setInviteField(invaddr,invmsg){
- var invElement = document.getElementById('invitedemail');
- invElement.setAttribute("value"," "+invaddr);
- var mesgElement = document.getElementById('invitedmsg');
- mesgElement.setAttribute("value"," "+invmsg);
- }
-
- function DoRemove() {
- RemoveFromInviteList(addr);
- }
-
- function AnotherInvite() {
- RemoveFromInviteList(addr);
- window.openDialog("chrome://aim/content/InviteAFriendWizard.xul","_blank","chrome,dialog=no",addr);
- }
-
-