home *** CD-ROM | disk | FTP | other *** search
- //--------------------------------------------------------------------
- // Reminders utility functions
- //--------------------------------------------------------------------
- function AddParameter(cmd, name, value)
- {
- if (value.length > 0) {
- return cmd + "&" + name + "=" + encodeURIComponent(value)
- } else {
- return cmd;
- }
- }
-
- function CreateNewAlert(name, text, command, profile, daysuntil, daysbefore, daysafter)
- {
- // We need to build a URL that encodes each argument
- var cmd;
-
- cmd = "qbks2://qbw:new_alert?confirm=Y"
- cmd = AddParameter(cmd, "name", name);
- cmd = AddParameter(cmd, "messagetext", text);
- cmd = AddParameter(cmd, "action", command);
- cmd = AddParameter(cmd, "context", "Company Navigator,AlertsManager,DateIsEditable,ReminderPopup");
- cmd = AddParameter(cmd, "profile", profile);
- cmd = AddParameter(cmd, "daysuntildue", daysuntil);
- cmd = AddParameter(cmd, "daysbefore", daysbefore);
- cmd = AddParameter(cmd, "daysafter", daysafter);
- cmd = AddParameter(cmd, "origin", "Solutions");
-
- window.location = cmd;
- }
-