123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- // msg popup
- function openInstantMsgPopup() {
- var status = getViewerObject("sysMessage");//message Object
- if (status != null && status.window.javascript.fOpenMsgPopup != undefined) {
- status.window.javascript.fOpenMsgPopup();
- }
- //status.window.javascript.modal("SPZMI00101", "", "1022", "81", "SPZMI00101", "", "");
- }
- function setMsgIconVisibility(flag) {
- var x = MM_findObj("instant_msg");
- if (flag == true || flag == "true") {
- x.style.visibility="visible";
- } else {
- iconHidden.style.visibility="hidden";
- x.style.visibility="hidden";
- }
- }
- function changeMsgIcon(msg) {
- var x = MM_findObj("instant_msg");
- if (msg == "U") {
- x.src="../images/msg_notify.gif";
- } else if (msg == "1") {
- x.src="../images/msg_alert.gif";
- } else if (msg == "2" || msg == "3") {
- x.src="../images/msg_notify.gif";
- } else if (msg == "N") {
- x.src="../images/msg_disconnected.gif";
- } else if (msg == "E") {
- x.src="../images/msg_connected.gif";
- } else if (msg == "O") {
- if(x.src!="../images/msg_disconnected.gif"){
- x.src="../images/msg_connected.gif";
- }
- }
- }
- function openPhoneInfoPopup() {
- var status = getViewerObject("sysMessage");//message Object
- if (status != null && status.window.javascript.fOpenPhoneInfoPopup != undefined) {
- status.window.javascript.fOpenPhoneInfoPopup();
- }
- }
- function openDeptInfoPopup() {
- var status = getViewerObject("sysMessage");//message Object
- if (status != null && status.window.javascript.fOpenDeptInfoPopup != undefined) {
- status.window.javascript.fOpenDeptInfoPopup();
- }
- }
|