]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - jssource/src_files/include/javascript/sugar_3.js
Release 6.5.0beta2
[Github/sugarcrm.git] / jssource / src_files / include / javascript / sugar_3.js
1 /*********************************************************************************
2  * SugarCRM Community Edition is a customer relationship management program developed by
3  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
4  * 
5  * This program is free software; you can redistribute it and/or modify it under
6  * the terms of the GNU Affero General Public License version 3 as published by the
7  * Free Software Foundation with the addition of the following permission added
8  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
9  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
10  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
11  * 
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
15  * details.
16  * 
17  * You should have received a copy of the GNU Affero General Public License along with
18  * this program; if not, see http://www.gnu.org/licenses or write to the Free
19  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20  * 02110-1301 USA.
21  * 
22  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
23  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
24  * 
25  * The interactive user interfaces in modified source and object code versions
26  * of this program must display Appropriate Legal Notices, as required under
27  * Section 5 of the GNU Affero General Public License version 3.
28  * 
29  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
30  * these Appropriate Legal Notices must retain the display of the "Powered by
31  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
32  * technical reasons, the Appropriate Legal Notices must display the words
33  * "Powered by SugarCRM".
34  ********************************************************************************/
35
36
37
38
39 /**
40  * Namespace for Sugar Objects
41  */
42 if (typeof(SUGAR) == "undefined") {
43     SUGAR = {
44
45         /**
46          * Creates a namespace if it doesn't exist and then returns it.
47          *
48          * Note: this implementation only creates a top-level namespace. Extend this function if
49          * multi-level namespaces are needed.
50          * @param ns
51          */
52         namespace: function(ns) {
53             SUGAR[ns] = SUGAR[ns] || {};
54
55             return ((typeof SUGAR[ns] === "object") && (SUGAR[ns] !== null)) ? SUGAR[ns] : false;
56         },
57
58         /**
59          * Add properties of an object to target object.
60          * @param target
61          * @param obj
62          */
63         append: function(target, obj) {
64             for (var prop in obj) {
65                 if (obj[prop] !== void 0) target[prop] = obj[prop];
66             }
67
68             return target;
69         }
70     };
71 }
72
73 // Namespaces
74 SUGAR.namespace("themes");
75
76 /**
77  * Namespace for Homepage
78  */
79  SUGAR.namespace("sugarHome");
80
81 /**
82  * Namespace for Subpanel Utils
83  */
84 SUGAR.namespace("subpanelUtils");
85
86 /**
87  * AJAX status class
88  */
89 SUGAR.namespace("ajaxStatusClass");
90
91 /**
92  * Tab selector utils
93  */
94 SUGAR.namespace("tabChooser");
95
96 /**
97  * General namespace for Sugar utils
98  */
99 SUGAR.namespace("utils");
100 SUGAR.namespace("savedViews");
101
102 /**
103  * Dashlet utils
104  */
105 SUGAR.namespace("dashlets");
106 SUGAR.namespace("unifiedSearchAdvanced");
107
108 SUGAR.namespace("searchForm");
109 SUGAR.namespace("language");
110 SUGAR.namespace("Studio");
111 SUGAR.namespace("contextMenu");
112 SUGAR.namespace("config");
113
114 var nameIndex = 0;
115 var typeIndex = 1;
116 var requiredIndex = 2;
117 var msgIndex = 3;
118 var jstypeIndex = 5;
119 var minIndex = 10;
120 var maxIndex = 11;
121 var altMsgIndex = 15;
122 var compareToIndex = 7;
123 var arrIndex = 12;
124 var operatorIndex = 13;
125 var callbackIndex = 16;
126 var allowblank = 8;
127 var validate = new Array();
128 var maxHours = 24;
129 var requiredTxt = 'Missing Required Field:';
130 var invalidTxt = 'Invalid Value:';
131 var secondsSinceLoad = 0;
132 var inputsWithErrors = new Array();
133 var tabsWithErrors = new Array();
134 var lastSubmitTime = 0;
135 var alertList = new Array();
136 var oldStartsWith = '';
137
138 /**
139  * @deprecated
140  *
141  * As of Sugar version 6.2.3 (MSIE Version 9) this function is deprecated.  The preferred method is to use the
142  * user agent check supplied by YUI to check for IE:
143  *
144  * for checking if a browser is IE in general :  if(YAHOO.env.ua.ie) {...}
145  *
146  * or for checking specific versions:  if (YAHOO.env.ua.ie >= 5.5 && YAHOO.env.ua.ie < 9) {...}
147  *
148  */
149 function isSupportedIE() {
150         var userAgent = navigator.userAgent.toLowerCase() ;
151
152         // IE Check supports ActiveX controls
153         if (userAgent.indexOf("msie") != -1 && userAgent.indexOf("mac") == -1 && userAgent.indexOf("opera") == -1) {
154                 var version = navigator.appVersion.match(/MSIE (.\..)/)[1] ;
155                 if(version >= 5.5 && version < 10) {
156                         return true;
157                 } else {
158                         return false;
159                 }
160         }
161 }
162
163 SUGAR.isIE = isSupportedIE();
164 var isSafari = (navigator.userAgent.toLowerCase().indexOf('safari')!=-1);
165
166 // escapes regular expression characters
167 RegExp.escape = function(text) { // http://simon.incutio.com/archive/2006/01/20/escape
168   if (!arguments.callee.sRE) {
169     var specials = ['/', '.', '*', '+', '?', '|','(', ')', '[', ']', '{', '}', '\\'];
170     arguments.callee.sRE = new RegExp('(\\' + specials.join('|\\') + ')', 'g');
171   }
172   return text.replace(arguments.callee.sRE, '\\$1');
173 }
174
175 function addAlert(type, name,subtitle, description,time, redirect) {
176         var addIndex = alertList.length;
177         alertList[addIndex]= new Array();
178         alertList[addIndex]['name'] = name;
179         alertList[addIndex]['type'] = type;
180         alertList[addIndex]['subtitle'] = subtitle;
181         alertList[addIndex]['description'] = replaceHTMLChars(description.replace(/<br>/gi, "\n"));
182         alertList[addIndex]['time'] = time;
183         alertList[addIndex]['done'] = 0;
184         alertList[addIndex]['redirect'] = redirect;
185 }
186 function checkAlerts() {
187         secondsSinceLoad += 1;
188         var mj = 0;
189         var alertmsg = '';
190         for(mj = 0 ; mj < alertList.length; mj++) {
191                 if(alertList[mj]['done'] == 0) {
192                         if(alertList[mj]['time'] < secondsSinceLoad && alertList[mj]['time'] > -1 ) {
193                                 alertmsg = alertList[mj]['type'] + ":" + alertList[mj]['name'] + "\n" +alertList[mj]['subtitle']+ "\n"+ alertList[mj]['description'] + "\n\n";
194                                 alertList[mj]['done'] = 1;
195                                 if(alertList[mj]['redirect'] == '') {
196                                         alert(alertmsg);
197                                 }
198                                 else if(confirm(alertmsg)) {
199                                         window.location = alertList[mj]['redirect'];
200                                 }
201                         }
202                 }
203         }
204
205         setTimeout("checkAlerts()", 1000);
206 }
207
208 function toggleDisplay(id) {
209         if(this.document.getElementById(id).style.display == 'none') {
210                 this.document.getElementById(id).style.display = '';
211                 if(this.document.getElementById(id+"link") != undefined) {
212                         this.document.getElementById(id+"link").style.display = 'none';
213                 }
214                 if(this.document.getElementById(id+"_anchor") != undefined)
215                         this.document.getElementById(id+"_anchor").innerHTML='[ - ]';
216         }
217         else {
218                 this.document.getElementById(id).style.display = 'none';
219                 if(this.document.getElementById(id+"link") != undefined) {
220                         this.document.getElementById(id+"link").style.display = '';
221                 }
222                 if(this.document.getElementById(id+"_anchor") != undefined)
223                         this.document.getElementById(id+"_anchor").innerHTML='[+]';
224         }
225 }
226
227 function checkAll(form, field, value) {
228         for (i = 0; i < form.elements.length; i++) {
229                 if(form.elements[i].name == field)
230                         form.elements[i].checked = value;
231         }
232 }
233
234 function replaceAll(text, src, rep) {
235         offset = text.toLowerCase().indexOf(src.toLowerCase());
236         while(offset != -1) {
237                 text = text.substring(0, offset) + rep + text.substring(offset + src.length ,text.length);
238                 offset = text.indexOf( src, offset + rep.length + 1);
239         }
240         return text;
241 }
242
243 function addForm(formname) {
244         validate[formname] = new Array();
245 }
246
247 function addToValidate(formname, name, type, required, msg) {
248         if(typeof validate[formname] == 'undefined') {
249                 addForm(formname);
250         }
251         validate[formname][validate[formname].length] = new Array(name, type,required, msg);
252 }
253
254 // Bug #47961 Callback validator definition
255 function addToValidateCallback(formname, name, type, required, msg, callback)
256 {
257     addToValidate(formname, name, type, required, msg);
258     var iIndex = validate[formname].length -1;
259     validate[formname][iIndex][jstypeIndex] = 'callback';
260     validate[formname][iIndex][callbackIndex] = callback;
261 }
262
263 function addToValidateRange(formname, name, type,required,  msg,min,max) {
264         addToValidate(formname, name, type,required,  msg);
265         validate[formname][validate[formname].length - 1][jstypeIndex] = 'range';
266         validate[formname][validate[formname].length - 1][minIndex] = min;
267         validate[formname][validate[formname].length - 1][maxIndex] = max;
268 }
269
270 function addToValidateIsValidDate(formname, name, type, required, msg) {
271         addToValidate(formname, name, type, required, msg);
272         validate[formname][validate[formname].length - 1][jstypeIndex] = 'date';
273 }
274
275 function addToValidateIsValidTime(formname, name, type, required, msg) {
276         addToValidate(formname, name, type, required, msg);
277         validate[formname][validate[formname].length - 1][jstypeIndex] = 'time';
278 }
279
280 function addToValidateDateBefore(formname, name, type, required, msg, compareTo) {
281         addToValidate(formname, name, type,required,  msg);
282         validate[formname][validate[formname].length - 1][jstypeIndex] = 'isbefore';
283         validate[formname][validate[formname].length - 1][compareToIndex] = compareTo;
284 }
285
286 function addToValidateDateBeforeAllowBlank(formname, name, type, required, msg, compareTo, allowBlank) {
287         addToValidate(formname, name, type,required,  msg);
288         validate[formname][validate[formname].length - 1][jstypeIndex] = 'isbefore';
289         validate[formname][validate[formname].length - 1][compareToIndex] = compareTo;
290         validate[formname][validate[formname].length - 1][allowblank] = allowBlank;
291 }
292
293 function addToValidateBinaryDependency(formname, name, type, required, msg, compareTo) {
294         addToValidate(formname, name, type, required, msg);
295         validate[formname][validate[formname].length - 1][jstypeIndex] = 'binarydep';
296         validate[formname][validate[formname].length - 1][compareToIndex] = compareTo;
297 }
298
299 function addToValidateComparison(formname, name, type, required, msg, compareTo) {
300         addToValidate(formname, name, type, required, msg);
301         validate[formname][validate[formname].length - 1][jstypeIndex] = 'comparison';
302         validate[formname][validate[formname].length - 1][compareToIndex] = compareTo;
303 }
304
305 function addToValidateIsInArray(formname, name, type, required, msg, arr, operator) {
306         addToValidate(formname, name, type, required, msg);
307         validate[formname][validate[formname].length - 1][jstypeIndex] = 'in_array';
308         validate[formname][validate[formname].length - 1][arrIndex] = arr;
309         validate[formname][validate[formname].length - 1][operatorIndex] = operator;
310 }
311
312 function addToValidateVerified(formname, name, type, required, msg, arr, operator) {
313         addToValidate(formname, name, type, required, msg);
314         validate[formname][validate[formname].length - 1][jstypeIndex] = 'verified';
315 }
316
317 function addToValidateLessThan(formname, name, type, required, msg, max, max_field_msg) {
318         addToValidate(formname, name, type, required, msg);
319         validate[formname][validate[formname].length - 1][jstypeIndex] = 'less';
320     validate[formname][validate[formname].length - 1][maxIndex] = max;
321     validate[formname][validate[formname].length - 1][altMsgIndex] = max_field_msg;
322
323 }
324 function addToValidateMoreThan(formname, name, type, required, msg, min) {
325         addToValidate(formname, name, type, required, msg);
326         validate[formname][validate[formname].length - 1][jstypeIndex] = 'more';
327     validate[formname][validate[formname].length - 1][minIndex] = min;
328 }
329
330
331 function removeFromValidate(formname, name) {
332         for(i = 0; i < validate[formname].length; i++)
333         {
334                 if(validate[formname][i][nameIndex] == name)
335                 {
336                         validate[formname].splice(i--,1); // We subtract 1 from i since the slice removed an element, and we'll skip over the next item we scan
337                 }
338         }
339 }
340 function checkValidate(formname, name) {
341     if(validate[formname]){
342             for(i = 0; i < validate[formname].length; i++){
343                 if(validate[formname][i][nameIndex] == name){
344                     return true;
345                 }
346             }
347         }
348     return false;
349 }
350 var formsWithFieldLogic=null;
351 var formWithPrecision =null;
352 function addToValidateFieldLogic(formId,minFieldId, maxFieldId, defaultFieldId, lenFieldId,type,msg){
353         this.formId = document.getElementById(formId);
354         this.min=document.getElementById(minFieldId);
355         this.max= document.getElementById(maxFieldId);
356         this._default= document.getElementById(defaultFieldId);
357         this.len = document.getElementById(lenFieldId);
358         this.msg = msg;
359         this.type= type;
360 }
361 //@params: formid- Dom id of the form containing the precision and float fields
362 //         valudId- Dom id of the field containing a float whose precision is to be checked.
363 //         precisionId- Dom id of the field containing precision value.
364 function addToValidatePrecision(formId, valueId, precisionId){
365         this.form = document.getElementById(formId);
366         this.float = document.getElementById(valueId);
367         this.precision = document.getElementById(precisionId);
368 }
369
370 //function checkLength(value, referenceValue){
371 //      return value
372 //}
373
374 function isValidPrecision(value, precision){
375         value = trim(value.toString());
376         if(precision == '')
377                 return true;
378         if(value == '')
379             return true;
380         //#27021
381         if( (precision == "0") ){
382                 if (value.indexOf(dec_sep)== -1){
383                         return true;
384                 }else{
385                         return false;
386                 }
387         }
388         //#27021   end
389         if(value.charAt(value.length-precision-1) == num_grp_sep){
390                 if(value.substr(value.indexOf(dec_sep), 1)==dec_sep){
391                         return false;
392                 }
393                 return  true;
394         }
395         var actualPrecision = value.substr(value.indexOf(dec_sep)+1, value.length).length;
396         return actualPrecision == precision;
397 }
398 function toDecimal(original, precision) {
399     precision = (precision == null) ? 2 : precision;
400     num = Math.pow(10, precision);
401         temp = Math.round(original*num)/num;
402         if((temp * 100) % 100 == 0)
403                 return temp + '.00';
404         if((temp * 10) % 10 == 0)
405                 return temp + '0';
406         return temp
407 }
408
409 function isInteger(s) {
410         if(typeof num_grp_sep != 'undefined' && typeof dec_sep != 'undefined')
411         {
412                 s = unformatNumberNoParse(s, num_grp_sep, dec_sep).toString();
413         }
414         return /^[+-]?[0-9]*$/.test(s) ;
415 }
416
417 function isDecimal(s) {
418     if (typeof s == "string" && s == "")    // bug# 46530, this is required in order to
419         return true;                        // not check empty decimal fields
420
421         if(typeof num_grp_sep != 'undefined' && typeof dec_sep != 'undefined')
422         {
423                 s = unformatNumberNoParse(s, num_grp_sep, dec_sep).toString();
424         }
425         return  /^[+-]?[0-9]*\.?[0-9]*$/.test(s) ;
426 }
427
428 function isNumeric(s) {
429         return isDecimal(s);
430 }
431
432 if (typeof date_reg_positions != "object") var date_reg_positions = {'Y': 1,'m': 2,'d': 3};
433 if (typeof date_reg_format != "string") var date_reg_format = '([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})';
434
435 function isDate(dtStr) {
436
437         if(dtStr.length== 0) {
438                 return true;
439         }
440
441     // Check that we have numbers
442         myregexp = new RegExp(date_reg_format)
443         if(!myregexp.test(dtStr))
444                 return false
445
446     m = '';
447     d = '';
448     y = '';
449
450     var dateParts = dtStr.match(date_reg_format);
451     for(key in date_reg_positions) {
452         index = date_reg_positions[key];
453         if(key == 'm') {
454            m = dateParts[index];
455         } else if(key == 'd') {
456            d = dateParts[index];
457         } else {
458            y = dateParts[index];
459         }
460     }
461
462     // Check that date is real
463     var dd = new Date(y,m,0);
464     // reject negative years
465     if (y < 1)
466         return false;
467     // reject month less than 1 and greater than 12
468     if (m > 12 || m < 1)
469         return false;
470     // reject days less than 1 or days not in month (e.g. February 30th)
471     if (d < 1 || d > dd.getDate())
472         return false;
473     return true;
474 }
475
476 function getDateObject(dtStr) {
477         if(dtStr.length== 0) {
478                 return true;
479         }
480
481         myregexp = new RegExp(date_reg_format)
482
483         if(myregexp.exec(dtStr)) var dt = myregexp.exec(dtStr)
484         else return false;
485
486         var yr = dt[date_reg_positions['Y']];
487         var mh = dt[date_reg_positions['m']];
488         var dy = dt[date_reg_positions['d']];
489     var dtar = dtStr.split(' ');
490     if(typeof(dtar[1])!='undefined' && isTime(dtar[1])) {//if it is a timedate, we should make date1 to have time value
491         var t1 = dtar[1].replace(/am/i,' AM');
492         var t1 = t1.replace(/pm/i,' PM');
493         //bug #37977: where time format 23.00 causes java script error
494         t1=t1.replace(/\./, ':');
495         date1 = new Date(Date.parse(mh+'/'+dy+ '/'+yr+' '+t1));
496     }
497     else
498     {
499         var date1 = new Date();
500         date1.setFullYear(yr); // xxxx 4 char year
501         date1.setMonth(mh-1); // 0-11 Bug 4048: javascript Date obj months are 0-index
502         date1.setDate(dy); // 1-31
503     }
504         return date1;
505 }
506
507 function isBefore(value1, value2) {
508         var d1 = getDateObject(value1);
509         var d2 = getDateObject(value2);
510     if(typeof(d2)=='boolean') {// if d2 is not set, we should let it pass, the d2 may not need to be set. the empty check should not be done here.
511         return true;
512     }
513         return d2 >= d1;
514 }
515
516 function isValidEmail(emailStr) {
517
518     if(emailStr.length== 0) {
519                 return true;
520         }
521         // cn: bug 7128, a period at the end of the string mangles checks. (switched to accept spaces and delimiters)
522         var lastChar = emailStr.charAt(emailStr.length - 1);
523         if(!lastChar.match(/[^\.]/i)) {
524                 return false;
525         }
526         //bug 40068, According to rules in page 6 of http://www.apps.ietf.org/rfc/rfc3696.html#sec-3,
527         //first character of local part of an email address
528         //should not be a period i.e. '.'
529
530         var firstLocalChar=emailStr.charAt(0);
531         if(firstLocalChar.match(/\./)){
532                 return false;
533         }
534
535         //bug 40068, According to rules in page 6 of http://www.apps.ietf.org/rfc/rfc3696.html#sec-3,
536         //last character of local part of an email address
537         //should not be a period i.e. '.'
538
539         var pos=emailStr.lastIndexOf("@");
540         var localPart = emailStr.substr(0, pos);
541         var lastLocalChar=localPart.charAt(localPart.length - 1);
542         if(lastLocalChar.match(/\./)){
543                 return false;
544         }
545
546
547         var reg = /@.*?;/g;
548     var results;
549         while ((results = reg.exec(emailStr)) != null) {
550                         var original = results[0];
551                         parsedResult = results[0].replace(';', '::;::');
552                         emailStr = emailStr.replace (original, parsedResult);
553         }
554
555         reg = /.@.*?,/g;
556         while ((results = reg.exec(emailStr)) != null) {
557                         var original = results[0];
558                         //Check if we were using ; as a delimiter. If so, skip the commas
559             if(original.indexOf("::;::") == -1) {
560                 var parsedResult = results[0].replace(',', '::;::');
561                             emailStr = emailStr.replace (original, parsedResult);
562             }
563         }
564
565         // mfh: bug 15010 - more practical implementation of RFC 2822 from http://www.regular-expressions.info/email.html, modifed to accept CAPITAL LETTERS
566         //if(!/[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?/.test(emailStr))
567         //      return false
568
569         //bug 40068, According to rules in page 6 of http://www.apps.ietf.org/rfc/rfc3696.html#sec-3,
570         //allowed special characters ! # $ % & ' * + - / = ?  ^ _ ` . { | } ~ in local part
571     var emailArr = emailStr.split(/::;::/);
572         for (var i = 0; i < emailArr.length; i++) {
573                 var emailAddress = emailArr[i];
574                 if (trim(emailAddress) != '') {
575                         if(!/^\s*[\w.%+\-&'#!\$\*=\?\^_`\{\}~\/]+@([A-Z0-9-]+\.)*[A-Z0-9-]+\.[\w-]{2,}\s*$/i.test(emailAddress) &&
576                            !/^.*<[A-Z0-9._%+\-&'#!\$\*=\?\^_`\{\}~]+?@([A-Z0-9-]+\.)*[A-Z0-9-]+\.[\w-]{2,}>\s*$/i.test(emailAddress)) {
577
578                            return false;
579                         } // if
580                 }
581         } // for
582         return true;
583 }
584
585 function isValidPhone(phoneStr) {
586         if(phoneStr.length== 0) {
587                 return true;
588         }
589         if(!/^[0-9\-\(\)\s]+$/.test(phoneStr))
590                 return false
591         return true
592 }
593 function isFloat(floatStr) {
594         if(floatStr.length== 0) {
595                 return true;
596         }
597         if(!(typeof(num_grp_sep)=='undefined' || typeof(dec_sep)=='undefined')) {
598                 floatStr = unformatNumberNoParse(floatStr, num_grp_sep, dec_sep).toString();
599     }
600
601         return /^(-)?[0-9\.]+$/.test(floatStr);
602 }
603 function isDBName(str) {
604
605         if(str.length== 0) {
606                 return true;
607         }
608         // must start with a letter
609         if(!/^[a-zA-Z][a-zA-Z\_0-9]*$/.test(str))
610                 return false
611         return true
612 }
613 var time_reg_format = "[0-9]{1,2}\:[0-9]{2}";
614 function isTime(timeStr) {
615     var time_reg_format = "[0-9]{1,2}\:[0-9]{2}";
616         time_reg_format = time_reg_format.replace('([ap]m)', '');
617         time_reg_format = time_reg_format.replace('([AP]M)', '');
618         if(timeStr.length== 0){
619                 return true;
620         }
621         //we now support multiple time formats
622         myregexp = new RegExp(time_reg_format)
623         if(!myregexp.test(timeStr))
624                 return false
625
626         return true;
627 }
628
629 function inRange(value, min, max) {
630     if (typeof num_grp_sep != 'undefined' && typeof dec_sep != 'undefined')
631        value = unformatNumberNoParse(value, num_grp_sep, dec_sep).toString();
632         return value >= min && value <= max;
633 }
634
635 function bothExist(item1, item2) {
636         if(typeof item1 == 'undefined') { return false; }
637         if(typeof item2 == 'undefined') { return false; }
638         if((item1 == '' && item2 != '') || (item1 != '' && item2 == '') ) { return false; }
639         return true;
640 }
641
642 trim = YAHOO.lang.trim;
643
644
645 function check_form(formname) {
646         if (typeof(siw) != 'undefined' && siw
647                 && typeof(siw.selectingSomething) != 'undefined' && siw.selectingSomething)
648                         return false;
649         return validate_form(formname, '');
650 }
651
652 function add_error_style(formname, input, txt, flash) {
653     var raiseFlag = false;
654         if (typeof flash == "undefined")
655                 flash = true;
656         try {
657         inputHandle = typeof input == "object" ? input : document.forms[formname][input];
658         style = get_current_bgcolor(inputHandle);
659
660         // strip off the colon at the end of the warning strings
661         if ( txt.substring(txt.length-1) == ':' )
662             txt = txt.substring(0,txt.length-1)
663
664         // Bug 28249 - To help avoid duplicate messages for an element, strip off extra messages and
665         // match on the field name itself
666         requiredTxt = SUGAR.language.get('app_strings', 'ERR_MISSING_REQUIRED_FIELDS');
667     invalidTxt = SUGAR.language.get('app_strings', 'ERR_INVALID_VALUE');
668     nomatchTxt = SUGAR.language.get('app_strings', 'ERR_SQS_NO_MATCH_FIELD');
669     matchTxt = txt.replace(requiredTxt,'').replace(invalidTxt,'').replace(nomatchTxt,'');
670
671     YUI().use('node', function (Y) {
672         Y.one(inputHandle).get('parentNode').get('children').each(function(node, index, nodeList){
673             if(node.hasClass('validation-message') && node.get('text').search(matchTxt)){
674                 raiseFlag = true;
675             }
676         });
677     });
678
679     if(!raiseFlag) {
680         errorTextNode = document.createElement('div');
681         errorTextNode.className = 'required validation-message';
682         errorTextNode.innerHTML = txt;
683         if ( inputHandle.parentNode.className.indexOf('x-form-field-wrap') != -1 ) {
684             inputHandle.parentNode.parentNode.appendChild(errorTextNode);
685         }
686         else {
687             inputHandle.parentNode.appendChild(errorTextNode);
688         }
689         if (flash)
690                 inputHandle.style.backgroundColor = "#FF0000";
691         inputsWithErrors.push(inputHandle);
692         }
693     if (flash)
694     {
695                 // We only need to setup the flashy-flashy on the first entry, it loops through all fields automatically
696             if ( inputsWithErrors.length == 1 ) {
697               for(var wp = 1; wp <= 10; wp++) {
698                 window.setTimeout('fade_error_style(style, '+wp*10+')',1000+(wp*50));
699               }
700             }
701                 if(typeof (window[formname + "_tabs"]) != "undefined") {
702                 var tabView = window[formname + "_tabs"];
703                 var parentDiv = YAHOO.util.Dom.getAncestorByTagName(inputHandle, "div");
704                 if ( tabView.get ) {
705                     var tabs = tabView.get("tabs");
706                     for (var i in tabs) {
707                         if (tabs[i].get("contentEl") == parentDiv
708                                         || YAHOO.util.Dom.isAncestor(tabs[i].get("contentEl"), inputHandle))
709                         {
710                             tabs[i].get("labelEl").style.color = "red";
711                             if ( inputsWithErrors.length == 1 )
712                                 tabView.selectTab(i);
713                         }
714                     }
715                 }
716                 }
717                 window.setTimeout("inputsWithErrors[" + (inputsWithErrors.length - 1) + "].style.backgroundColor = '';", 2000);
718     }
719
720   } catch ( e ) {
721       // Catch errors here so we don't allow an incomplete record through the javascript validation
722   }
723 }
724
725
726 /**
727  * removes all error messages for the current form
728  */
729 function clear_all_errors() {
730     for(var wp = 0; wp < inputsWithErrors.length; wp++) {
731         if(typeof(inputsWithErrors[wp]) !='undefined' && typeof inputsWithErrors[wp].parentNode != 'undefined' && inputsWithErrors[wp].parentNode != null) {
732             if ( inputsWithErrors[wp].parentNode.className.indexOf('x-form-field-wrap') != -1 )
733             {
734                 inputsWithErrors[wp].parentNode.parentNode.removeChild(inputsWithErrors[wp].parentNode.parentNode.lastChild);
735             }
736             else
737             {
738                 inputsWithErrors[wp].parentNode.removeChild(inputsWithErrors[wp].parentNode.lastChild);
739             }
740         }
741         }
742         if (inputsWithErrors.length == 0) return;
743
744         if ( YAHOO.util.Dom.getAncestorByTagName(inputsWithErrors[0], "form") ) {
745         var formname = YAHOO.util.Dom.getAncestorByTagName(inputsWithErrors[0], "form").getAttribute("name");
746         if(typeof (window[formname + "_tabs"]) != "undefined") {
747             var tabView = window[formname + "_tabs"];
748             if ( tabView.get ) {
749                 var tabs = tabView.get("tabs");
750                 for (var i in tabs) {
751                     if (typeof tabs[i] == "object")
752                     tabs[i].get("labelEl").style.color = "";
753                 }
754             }
755         }
756         inputsWithErrors = new Array();
757     }
758 }
759
760 function get_current_bgcolor(input) {
761         if(input.currentStyle) {// ie
762                 style = input.currentStyle.backgroundColor;
763                 return style.substring(1,7);
764         }
765         else {// moz
766                 style = '';
767                 styleRGB = document.defaultView.getComputedStyle(input, '').getPropertyValue("background-color");
768                 comma = styleRGB.indexOf(',');
769                 style += dec2hex(styleRGB.substring(4, comma));
770                 commaPrevious = comma;
771                 comma = styleRGB.indexOf(',', commaPrevious+1);
772                 style += dec2hex(styleRGB.substring(commaPrevious+2, comma));
773                 style += dec2hex(styleRGB.substring(comma+2, styleRGB.lastIndexOf(')')));
774                 return style;
775         }
776 }
777
778 function hex2dec(hex){return(parseInt(hex,16));}
779 var hexDigit=new Array("0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F");
780 function dec2hex(dec){return(hexDigit[dec>>4]+hexDigit[dec&15]);}
781
782 function fade_error_style(normalStyle, percent) {
783         errorStyle = 'c60c30';
784         var r1 = hex2dec(errorStyle.slice(0,2));
785         var g1 = hex2dec(errorStyle.slice(2,4));
786         var b1 = hex2dec(errorStyle.slice(4,6));
787
788         var r2 = hex2dec(normalStyle.slice(0,2));
789         var g2 = hex2dec(normalStyle.slice(2,4));
790         var b2 = hex2dec(normalStyle.slice(4,6));
791
792
793         var pc = percent / 100;
794
795         r= Math.floor(r1+(pc*(r2-r1)) + .5);
796         g= Math.floor(g1+(pc*(g2-g1)) + .5);
797         b= Math.floor(b1+(pc*(b2-b1)) + .5);
798
799         for(var wp = 0; wp < inputsWithErrors.length; wp++) {
800                 inputsWithErrors[wp].style.backgroundColor = "#" + dec2hex(r) + dec2hex(g) + dec2hex(b);
801         }
802 }
803
804 function isFieldTypeExceptFromEmptyCheck(fieldType)
805 {
806     var results = false;
807     var exemptList = ['bool','file'];
808     for(var i=0;i<exemptList.length;i++)
809     {
810         if(fieldType == exemptList[i])
811             return true;
812     }
813     return results;
814 }
815 function validate_form(formname, startsWith){
816     requiredTxt = SUGAR.language.get('app_strings', 'ERR_MISSING_REQUIRED_FIELDS');
817     invalidTxt = SUGAR.language.get('app_strings', 'ERR_INVALID_VALUE');
818
819         if ( typeof (formname) == 'undefined')
820         {
821                 return false;
822         }
823         if ( typeof (validate[formname]) == 'undefined')
824         {
825         disableOnUnloadEditView(document.forms[formname]);
826                 return true;
827         }
828
829         var form = document.forms[formname];
830         var isError = false;
831         var errorMsg = "";
832         var _date = new Date();
833         if(_date.getTime() < (lastSubmitTime + 2000) && startsWith == oldStartsWith) { // ignore submits for the next 2 seconds
834                 return false;
835         }
836         lastSubmitTime = _date.getTime();
837         oldStartsWith = startsWith;
838
839         clear_all_errors(); // remove previous error messages
840
841         inputsWithErrors = new Array();
842         for(var i = 0; i < validate[formname].length; i++){
843                         if(validate[formname][i][nameIndex].indexOf(startsWith) == 0){
844                                 if(typeof form[validate[formname][i][nameIndex]]  != 'undefined' && typeof form[validate[formname][i][nameIndex]].value != 'undefined'){
845                                         var bail = false;
846
847                     //If a field is not required and it is blank or is binarydependant, skip validation.
848                     //Example of binary dependant fields would be the hour/min/meridian dropdowns in a date time combo widget, which require further processing than a blank check
849                     if(!validate[formname][i][requiredIndex] && trim(form[validate[formname][i][nameIndex]].value) == '' && (typeof(validate[formname][i][jstypeIndex]) != 'undefined' && validate[formname][i][jstypeIndex]  != 'binarydep'))
850                     {
851                        continue;
852                     }
853
854                                         if(validate[formname][i][requiredIndex]
855                                                 && !isFieldTypeExceptFromEmptyCheck(validate[formname][i][typeIndex])
856                                         ){
857                                                 if(typeof form[validate[formname][i][nameIndex]] == 'undefined' || trim(form[validate[formname][i][nameIndex]].value) == ""){
858                                                         add_error_style(formname, validate[formname][i][nameIndex], requiredTxt +' ' + validate[formname][i][msgIndex]);
859                                                         isError = true;
860                                                 }
861                                         }
862                                         if(!bail){
863                                                 switch(validate[formname][i][typeIndex]){
864                                                 case 'email':
865                                                         if(!isValidEmail(trim(form[validate[formname][i][nameIndex]].value))){
866                                                                 isError = true;
867                                                                 add_error_style(formname, validate[formname][i][nameIndex], invalidTxt + " " +  validate[formname][i][msgIndex]);
868                                                         }
869                                                          break;
870                                                 case 'time':
871                                                         if( !isTime(trim(form[validate[formname][i][nameIndex]].value))){
872                                                                 isError = true;
873                                                                 add_error_style(formname, validate[formname][i][nameIndex], invalidTxt + " " +  validate[formname][i][msgIndex]);
874                                                         } break;
875                                                 case 'date': if(!isDate(trim(form[validate[formname][i][nameIndex]].value))){
876                                                                 isError = true;
877                                                                 add_error_style(formname, validate[formname][i][nameIndex], invalidTxt + " " +  validate[formname][i][msgIndex]);
878                                                         }  break;
879                                                 case 'alpha':
880                                                         break;
881                                                 case 'DBName':
882                                                         if(!isDBName(trim(form[validate[formname][i][nameIndex]].value))){
883                                                                 isError = true;
884                                                                 add_error_style(formname, validate[formname][i][nameIndex], invalidTxt + " " +  validate[formname][i][msgIndex]);
885                                                         }
886                                                         break;
887                         // Bug #49614 : Check value without trimming before
888                                                 case 'DBNameRaw':
889                                                         if(!isDBName(form[validate[formname][i][nameIndex]].value)){
890                                                                 isError = true;
891                                                                 add_error_style(formname, validate[formname][i][nameIndex], invalidTxt + " " +  validate[formname][i][msgIndex]);
892                                                         }
893                                                         break;
894                                                 case 'alphanumeric':
895                                                         break;
896                                                 case 'file':
897                                                     var file_input = form[validate[formname][i][nameIndex] + '_file'];
898                             if( file_input && validate[formname][i][requiredIndex] && trim(file_input.value) == "" && !file_input.disabled ) {
899                                                           isError = true;
900                                                           add_error_style(formname, validate[formname][i][nameIndex], requiredTxt + " " +       validate[formname][i][msgIndex]);
901                                                       }
902                                                   break;
903                                                 case 'int':
904                                                         if(!isInteger(trim(form[validate[formname][i][nameIndex]].value))){
905                                                                 isError = true;
906                                                                 add_error_style(formname, validate[formname][i][nameIndex], invalidTxt + " " +  validate[formname][i][msgIndex]);
907                                                         }
908                                                         break;
909                                                 case 'decimal':
910                                                         if(!isDecimal(trim(form[validate[formname][i][nameIndex]].value))){
911                                                                 isError = true;
912                                                                 add_error_style(formname, validate[formname][i][nameIndex], invalidTxt + " " +  validate[formname][i][msgIndex]);
913                                                         }
914                                                         break;
915                                                 case 'currency':
916                                                 case 'float':
917                                                         if(!isFloat(trim(form[validate[formname][i][nameIndex]].value))){
918                                                                 isError = true;
919                                                                 add_error_style(formname, validate[formname][i][nameIndex], invalidTxt + " " +  validate[formname][i][msgIndex]);
920                                                         }
921                                                         break;
922                                                 case 'teamset_mass':
923                                                         var div_element_id = formname + '_' + form[validate[formname][i][nameIndex]].name + '_operation_div';
924                                                         var input_elements = YAHOO.util.Selector.query('input', document.getElementById(div_element_id));
925                                                         var primary_field_id = '';
926                                                         var validation_passed = false;
927                                                         var replace_selected = false;
928
929                                                         //Loop through the option elements (replace or add currently)
930                                                         for(t in input_elements) {
931                                                                 if(input_elements[t].type && input_elements[t].type == 'radio' && input_elements[t].checked == true && input_elements[t].value == 'replace') {
932
933                                                            //Now find where the primary radio button is and if a value has been set
934                                                            var radio_elements = YAHOO.util.Selector.query('input[type=radio]', document.getElementById(formname + '_team_name_table'));
935
936                                                            for(var x = 0; x < radio_elements.length; x++) {
937                                                                    if(radio_elements[x].name != 'team_name_type') {
938                                                                           primary_field_id = 'team_name_collection_' + radio_elements[x].value;
939                                                                           if(radio_elements[x].checked) {
940                                                                                   replace_selected = true;
941                                                                                   if(trim(document.forms[formname].elements[primary_field_id].value) != '') {
942                                                          validation_passed = true;
943                                                          break;
944                                                                                       }
945                                                                           } else if(trim(document.forms[formname].elements[primary_field_id].value) != '') {
946                                                                                   replace_selected = true;
947                                                                           }
948                                                                    }
949                                                                    }
950                                                         }
951                                                         }
952
953                                                         if(replace_selected && !validation_passed) {
954                                                        add_error_style(formname, primary_field_id, SUGAR.language.get('app_strings', 'ERR_NO_PRIMARY_TEAM_SPECIFIED'));
955                                                        isError = true;
956                                                         }
957                                                         break;
958                                                 case 'teamset':
959                                                            var table_element_id = formname + '_' + form[validate[formname][i][nameIndex]].name + '_table';
960                                                            if(document.getElementById(table_element_id)) {
961                                                                    var input_elements = YAHOO.util.Selector.query('input[type=radio]', document.getElementById(table_element_id));
962                                                                    var has_primary = false;
963                                                                    var primary_field_id = form[validate[formname][i][nameIndex]].name + '_collection_0';
964
965                                                                    for(t in input_elements) {
966                                                                             primary_field_id = form[validate[formname][i][nameIndex]].name + '_collection_' + input_elements[t].value;
967                                                                         if(input_elements[t].type && input_elements[t].type == 'radio' && input_elements[t].checked == true) {
968                                                                            if(document.forms[formname].elements[primary_field_id].value != '') {
969                                                                                   has_primary = true;
970                                                                            }
971                                                                            break;
972                                                                         }
973                                                                    }
974
975                                                                    if(!has_primary) {
976                                                                           isError = true;
977                                                                           var field_id = form[validate[formname][i][nameIndex]].name + '_collection_' + input_elements[0].value;
978                                                                           add_error_style(formname, field_id, SUGAR.language.get('app_strings', 'ERR_NO_PRIMARY_TEAM_SPECIFIED'));
979                                                                    }
980                                                            }
981                                                        break;
982                                             case 'error':
983                                                         isError = true;
984                             add_error_style(formname, validate[formname][i][nameIndex], validate[formname][i][msgIndex]);
985                                                         break;
986                                                 }
987
988                                                 if(typeof validate[formname][i][jstypeIndex]  != 'undefined'/* && !isError*/){
989
990                                                         switch(validate[formname][i][jstypeIndex]){
991                                 // Bug #47961 May be validation through callback is best way.
992                                 case 'callback' :
993                                     if (typeof validate[formname][i][callbackIndex] == 'function')
994                                     {
995                                         var result = validate[formname][i][callbackIndex](formname, validate[formname][i][nameIndex]);
996                                         if (result == false)
997                                         {
998                                             isError = true;
999                                             add_error_style(formname, validate[formname][i][nameIndex], requiredTxt + " " +     validate[formname][i][msgIndex]);
1000                                         }
1001                                     }
1002                                     break;
1003                                                         case 'range':
1004                                                                 if(!inRange(trim(form[validate[formname][i][nameIndex]].value), validate[formname][i][minIndex], validate[formname][i][maxIndex])){
1005                                                                         isError = true;
1006                                     var lbl_validate_range = SUGAR.language.get('app_strings', 'LBL_VALIDATE_RANGE');
1007                                     add_error_style(formname, validate[formname][i][nameIndex], validate[formname][i][msgIndex] + " value " + form[validate[formname][i][nameIndex]].value + " " + lbl_validate_range + " (" +validate[formname][i][minIndex] + " - " + validate[formname][i][maxIndex] +  ") ");
1008                                                                 }
1009                                                         break;
1010                                                         case 'isbefore':
1011                                                                 compareTo = form[validate[formname][i][compareToIndex]];
1012                                                                 if(     typeof compareTo != 'undefined'){
1013                                                                         if(trim(compareTo.value) != '' || (validate[formname][i][allowblank] != 'true') ) {
1014                                                                                 date2 = trim(compareTo.value);
1015                                                                                 date1 = trim(form[validate[formname][i][nameIndex]].value);
1016
1017                                                                                 if(trim(date1).length != 0 && !isBefore(date1,date2)){
1018
1019                                                                                         isError = true;
1020                                                                                         //jc:#12287 - adding translation for the is not before message
1021                                                                                         add_error_style(formname, validate[formname][i][nameIndex], validate[formname][i][msgIndex] + "(" + date1 + ") " + SUGAR.language.get('app_strings', 'MSG_IS_NOT_BEFORE') + ' ' +date2);
1022                                                                                 }
1023                                                                         }
1024                                                                 }
1025                                                         break;
1026                             case 'less':
1027                                 value=unformatNumber(trim(form[validate[formname][i][nameIndex]].value), num_grp_sep, dec_sep);
1028                                                                 maximum = parseFloat(validate[formname][i][maxIndex]);
1029                                                                 if(     typeof maximum != 'undefined'){
1030                                                                         if(value>maximum) {
1031                                         isError = true;
1032                                         add_error_style(formname, validate[formname][i][nameIndex], validate[formname][i][msgIndex] +" " +SUGAR.language.get('app_strings', 'MSG_IS_MORE_THAN')+ ' ' + validate[formname][i][altMsgIndex]);
1033                                     }
1034                                                                 }
1035                                                         break;
1036                                                         case 'more':
1037                                 value=unformatNumber(trim(form[validate[formname][i][nameIndex]].value), num_grp_sep, dec_sep);
1038                                                                 minimum = parseFloat(validate[formname][i][minIndex]);
1039                                                                 if(     typeof minimum != 'undefined'){
1040                                                                         if(value<minimum) {
1041                                         isError = true;
1042                                         add_error_style(formname, validate[formname][i][nameIndex], validate[formname][i][msgIndex] +" " +SUGAR.language.get('app_strings', 'MSG_SHOULD_BE')+ ' ' + minimum + ' ' + SUGAR.language.get('app_strings', 'MSG_OR_GREATER'));
1043                                     }
1044                                                                 }
1045                                                         break;
1046                             case 'binarydep':
1047                                                                 compareTo = form[validate[formname][i][compareToIndex]];
1048                                                                 if( typeof compareTo != 'undefined') {
1049                                                                         item1 = trim(form[validate[formname][i][nameIndex]].value);
1050                                                                         item2 = trim(compareTo.value);
1051                                                                         if(!bothExist(item1, item2)) {
1052                                                                                 isError = true;
1053                                                                                 add_error_style(formname, validate[formname][i][nameIndex], validate[formname][i][msgIndex]);
1054                                                                         }
1055                                                                 }
1056                                                         break;
1057                                                         case 'comparison':
1058                                                                 compareTo = form[validate[formname][i][compareToIndex]];
1059                                                                 if( typeof compareTo != 'undefined') {
1060                                                                         item1 = trim(form[validate[formname][i][nameIndex]].value);
1061                                                                         item2 = trim(compareTo.value);
1062                                                                         if(!bothExist(item1, item2) || item1 != item2) {
1063                                                                                 isError = true;
1064                                                                                 add_error_style(formname, validate[formname][i][nameIndex], validate[formname][i][msgIndex]);
1065                                                                         }
1066                                                                 }
1067                                                         break;
1068                                                         case 'in_array':
1069                                                                 arr = eval(validate[formname][i][arrIndex]);
1070                                                                 operator = validate[formname][i][operatorIndex];
1071                                                                 item1 = trim(form[validate[formname][i][nameIndex]].value);
1072                                                                 if (operator.charAt(0) == 'u') {
1073                                                                         item1 = item1.toUpperCase();
1074                                                                         operator = operator.substring(1);
1075                                                                 } else if (operator.charAt(0) == 'l') {
1076                                                                         item1 = item1.toLowerCase();
1077                                                                         operator = operator.substring(1);
1078                                                                 }
1079                                                                 for(j = 0; j < arr.length; j++){
1080                                                                         val = arr[j];
1081                                                                         if((operator == "==" && val == item1) || (operator == "!=" && val != item1)){
1082                                                                                 isError = true;
1083                                                                                 add_error_style(formname, validate[formname][i][nameIndex], invalidTxt + " " +  validate[formname][i][msgIndex]);
1084                                                                         }
1085                                                                 }
1086                                                         break;
1087                                                         case 'verified':
1088                                                         if(trim(form[validate[formname][i][nameIndex]].value) == 'false'){
1089                                                            //Fake an error so form does not submit
1090                                                            isError = true;
1091                                                         }
1092                                                         break;
1093                                                         }
1094                                                 }
1095                                         }
1096                                 }
1097                         }
1098                 }
1099 /*      nsingh: BUG#15102
1100         Check min max default field logic.
1101         Can work with float values as well, but as of 10/8/07 decimal values in MB and studio don't have min and max value constraints.*/
1102         if(formsWithFieldLogic){
1103                 var invalidLogic=false;
1104                 if(formsWithFieldLogic.min && formsWithFieldLogic.max && formsWithFieldLogic._default) {
1105                         var showErrorsOn={min:{value:'min', show:false, obj:formsWithFieldLogic.min.value},
1106                                                         max:{value:'max',show:false, obj:formsWithFieldLogic.max.value},
1107                                                         _default:{value:'default',show:false, obj:formsWithFieldLogic._default.value},
1108                               len:{value:'len', show:false, obj:parseInt(formsWithFieldLogic.len.value,10)}};
1109
1110                         var min = (formsWithFieldLogic.min.value !='') ? parseFloat(formsWithFieldLogic.min.value) : 'undef';
1111                         var max  = (formsWithFieldLogic.max.value !='') ? parseFloat(formsWithFieldLogic.max.value) : 'undef';
1112                         var _default = (formsWithFieldLogic._default.value!='')? parseFloat(formsWithFieldLogic._default.value) : 'undef';
1113
1114                         /*Check all lengths are <= max size.*/
1115                         for(var i in showErrorsOn){
1116                                 if(showErrorsOn[i].value!='len' && showErrorsOn[i].obj.length > showErrorsOn.len.obj){
1117                                         invalidLogic=true;
1118                                         showErrorsOn[i].show=true;
1119                                         showErrorsOn.len.show=true;
1120                                 }
1121                         }
1122
1123                         if(min!='undef' && max!='undef' && _default!='undef'){
1124                                 if(!inRange(_default,min,max)){
1125                                         invalidLogic=true;
1126                                         showErrorsOn.min.show=true;
1127                                         showErrorsOn.max.show=true;
1128                                         showErrorsOn._default.show=true;
1129                                 }
1130                         }
1131                         if(min!='undef' && max!= 'undef' && min > max){
1132                                 invalidLogic = true;
1133                                 showErrorsOn.min.show=true;
1134                                 showErrorsOn.max.show=true;
1135                         }
1136                         if(min!='undef' && _default!='undef' && _default < min){
1137
1138                                 invalidLogic = true;
1139                                 showErrorsOn.min.show=true;
1140                                 showErrorsOn._default.show=true;
1141                         }
1142                         if(max!='undef' && _default !='undef' && _default>max){
1143
1144                                 invalidLogic = true;
1145                                 showErrorsOn.max.show=true;
1146                                 showErrorsOn._default.show=true;
1147                         }
1148
1149                         if(invalidLogic){
1150                                 isError=true;
1151                                 for(var error in showErrorsOn)
1152                                         if(showErrorsOn[error].show)
1153                                                 add_error_style(formname,showErrorsOn[error].value, formsWithFieldLogic.msg);
1154
1155                         }
1156
1157                         else if (!isError)
1158                                 formsWithFieldLogic = null;
1159                 }
1160         }
1161         if(formWithPrecision){
1162                 if (!isValidPrecision(formWithPrecision.float.value, formWithPrecision.precision.value)){
1163                         isError = true;
1164                         add_error_style(formname, 'default', SUGAR.language.get('app_strings', 'ERR_COMPATIBLE_PRECISION_VALUE'));
1165                 }else if(!isError){
1166                         isError = false;
1167                 }
1168         }
1169
1170 //END BUG# 15102
1171
1172         if (isError == true) {
1173                 var nw, ne, sw, se;
1174                 if (self.pageYOffset) // all except Explorer
1175                 {
1176                         nwX = self.pageXOffset;
1177                         seX = self.innerWidth;
1178                         nwY = self.pageYOffset;
1179                         seY = self.innerHeight;
1180                 }
1181                 else if (document.documentElement && document.documentElement.scrollTop) // Explorer 6 Strict
1182                 {
1183                         nwX = document.documentElement.scrollLeft;
1184                         seX = document.documentElement.clientWidth;
1185                         nwY = document.documentElement.scrollTop;
1186                         seY = document.documentElement.clientHeight;
1187                 }
1188                 else if (document.body) // all other Explorers
1189                 {
1190                         nwX = document.body.scrollLeft;
1191                         seX = document.body.clientWidth;
1192                         nwY = document.body.scrollTop;
1193                         seY = document.body.clientHeight;
1194                 }
1195
1196                 var inView = true; // is there an error within viewport of browser
1197                 for(var wp = 0; wp < inputsWithErrors.length; wp++) {
1198                         var elementCoor = findElementPos(inputsWithErrors[wp]);
1199                         if(!(elementCoor.x >= nwX && elementCoor.y >= nwY &&
1200                                 elementCoor.x <= seX && elementCoor.y <= seY)) { // if input is not within viewport
1201                                         inView = false;
1202                                         scrollToTop = elementCoor.y - 75;
1203                                         scrollToLeft = elementCoor.x - 75;
1204                         }
1205                         else { // on first input within viewport, don't scroll
1206                                 break;
1207                         }
1208                 }
1209
1210
1211                 if(!inView) window.scrollTo(scrollToLeft,scrollToTop);
1212
1213                 return false;
1214         }
1215
1216     disableOnUnloadEditView(form);
1217         return true;
1218
1219 }
1220
1221
1222 /**
1223  * This array is used to remember mark status of rows in browse mode
1224  */
1225 var marked_row = new Array;
1226
1227
1228 /**
1229  * Sets/unsets the pointer and marker in browse mode
1230  *
1231  * @param   object    the table row
1232  * @param   interger  the row number
1233  * @param   string    the action calling this script (over, out or click)
1234  * @param   string    the default background color
1235  * @param   string    the color to use for mouseover
1236  * @param   string    the color to use for marking a row
1237  *
1238  * @return  boolean  whether pointer is set or not
1239  */
1240 function setPointer(theRow, theRowNum, theAction, theDefaultColor, thePointerColor, theMarkColor) {
1241     var theCells = null;
1242
1243     // 1. Pointer and mark feature are disabled or the browser can't get the
1244     //    row -> exits
1245     if ((thePointerColor == '' && theMarkColor == '')
1246         || typeof(theRow.style) == 'undefined') {
1247         return false;
1248     }
1249
1250     // 2. Gets the current row and exits if the browser can't get it
1251     if (typeof(document.getElementsByTagName) != 'undefined') {
1252         theCells = theRow.getElementsByTagName('td');
1253     }
1254     else if (typeof(theRow.cells) != 'undefined') {
1255         theCells = theRow.cells;
1256     }
1257     else {
1258         return false;
1259     }
1260
1261     // 3. Gets the current color...
1262     var rowCellsCnt  = theCells.length;
1263     var domDetect    = null;
1264     var currentColor = null;
1265     var newColor     = null;
1266     // 3.1 ... with DOM compatible browsers except Opera that does not return
1267     //         valid values with "getAttribute"
1268     if (typeof(window.opera) == 'undefined'
1269         && typeof(theCells[0].getAttribute) != 'undefined') {
1270         currentColor = theCells[0].getAttribute('bgcolor');
1271         domDetect    = true;
1272     }
1273     // 3.2 ... with other browsers
1274     else {
1275         currentColor = theCells[0].style.backgroundColor;
1276         domDetect    = false;
1277     } // end 3
1278
1279     // 4. Defines the new color
1280     // 4.1 Current color is the default one
1281     if (currentColor == ''
1282         || (currentColor!= null && (currentColor.toLowerCase() == theDefaultColor.toLowerCase()))) {
1283         if (theAction == 'over' && thePointerColor != '') {
1284             newColor              = thePointerColor;
1285         }
1286         else if (theAction == 'click' && theMarkColor != '') {
1287             newColor              = theMarkColor;
1288             marked_row[theRowNum] = true;
1289         }
1290     }
1291     // 4.1.2 Current color is the pointer one
1292     else if (currentColor!= null && (currentColor.toLowerCase() == thePointerColor.toLowerCase())
1293              && (typeof(marked_row[theRowNum]) == 'undefined' || !marked_row[theRowNum])) {
1294         if (theAction == 'out') {
1295             newColor              = theDefaultColor;
1296         }
1297         else if (theAction == 'click' && theMarkColor != '') {
1298             newColor              = theMarkColor;
1299             marked_row[theRowNum] = true;
1300         }
1301     }
1302     // 4.1.3 Current color is the marker one
1303     else if (currentColor!= null && (currentColor.toLowerCase() == theMarkColor.toLowerCase())) {
1304         if (theAction == 'click') {
1305             newColor              = (thePointerColor != '')
1306                                   ? thePointerColor
1307                                   : theDefaultColor;
1308             marked_row[theRowNum] = (typeof(marked_row[theRowNum]) == 'undefined' || !marked_row[theRowNum])
1309                                   ? true
1310                                   : null;
1311         }
1312     } // end 4
1313
1314     // 5. Sets the new color...
1315     if (newColor) {
1316         var c = null;
1317         // 5.1 ... with DOM compatible browsers except Opera
1318         if (domDetect) {
1319             for (c = 0; c < rowCellsCnt; c++) {
1320                 theCells[c].setAttribute('bgcolor', newColor, 0);
1321             } // end for
1322         }
1323         // 5.2 ... with other browsers
1324         else {
1325             for (c = 0; c < rowCellsCnt; c++) {
1326                 theCells[c].style.backgroundColor = newColor;
1327             }
1328         }
1329     } // end 5
1330
1331     return true;
1332 } // end of the 'setPointer()' function
1333
1334
1335 /**
1336   * listbox redirection
1337   */
1338 function goToUrl(selObj, goToLocation) {
1339     eval("document.location.href = '" + goToLocation + "pos=" + selObj.options[selObj.selectedIndex].value + "'");
1340 }
1341
1342
1343
1344 var json_objects = new Object();
1345
1346 function getXMLHTTPinstance() {
1347         var xmlhttp = false;
1348         var userAgent = navigator.userAgent.toLowerCase() ;
1349
1350         // IE Check supports ActiveX controls
1351         if (userAgent.indexOf("msie") != -1 && userAgent.indexOf("mac") == -1 && userAgent.indexOf("opera") == -1) {
1352                 var version = navigator.appVersion.match(/MSIE (.\..)/)[1] ;
1353                 if(version >= 5.5 ) {
1354                         try {
1355                                 xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
1356                         }
1357                         catch (e) {
1358                                 try {
1359                                         xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
1360                                 }
1361                                 catch (E) {
1362                                         xmlhttp = false;
1363                                 }
1364                         }
1365                 }
1366         }
1367
1368         if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
1369                 xmlhttp = new XMLHttpRequest();
1370         }
1371         return xmlhttp;
1372 }
1373
1374 // NOW LOAD THE OBJECT..
1375 var global_xmlhttp = getXMLHTTPinstance();
1376
1377 function http_fetch_sync(url,post_data) {
1378         global_xmlhttp = getXMLHTTPinstance();
1379         var method = 'GET';
1380
1381         if(typeof(post_data) != 'undefined') method = 'POST';
1382         try {
1383                 global_xmlhttp.open(method, url,false);
1384         }
1385         catch(e) {
1386                 alert('message:'+e.message+":url:"+url);
1387         }
1388         if(method == 'POST') {
1389                 global_xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
1390         }
1391
1392         global_xmlhttp.send(post_data);
1393
1394         if (SUGAR.util.isLoginPage(global_xmlhttp.responseText))
1395                 return false;
1396
1397         var args = {"responseText" : global_xmlhttp.responseText,
1398                                 "responseXML" : global_xmlhttp.responseXML,
1399                                 "request_id" : typeof(request_id) != "undefined" ? request_id : 0};
1400         return args;
1401
1402 }
1403 // this is a GET unless post_data is defined
1404
1405 function http_fetch_async(url,callback,request_id,post_data) {
1406         var method = 'GET';
1407         if(typeof(post_data) != 'undefined') {
1408                 method = 'POST';
1409         }
1410
1411         try {
1412                 global_xmlhttp.open(method, url,true);
1413         }
1414         catch(e) {
1415                 alert('message:'+e.message+":url:"+url);
1416         }
1417         if(method == 'POST') {
1418                 global_xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
1419         }
1420         global_xmlhttp.onreadystatechange = function() {
1421                 if(global_xmlhttp.readyState==4) {
1422                         if(global_xmlhttp.status == 200) {
1423                                 if (SUGAR.util.isLoginPage(global_xmlhttp.responseText))
1424                                         return false;
1425                                 var args = {"responseText" : global_xmlhttp.responseText,
1426                                                         "responseXML" : global_xmlhttp.responseXML,
1427                                                         "request_id" : request_id };
1428                                 callback.call(document,args);
1429                         }
1430                         else {
1431                                 alert("There was a problem retrieving the XML data:\n" + global_xmlhttp.statusText);
1432                         }
1433                 }
1434         }
1435         global_xmlhttp.send(post_data);
1436 }
1437
1438 function insert_at_cursor(field, value) {
1439  //ie:
1440         if (document.selection) {
1441                 field.focus();
1442                 sel = document.selection.createRange();
1443                 sel.text = value;
1444         }
1445  //mozilla:
1446         else if(field.selectionStart || field.selectionStart == '0') {
1447                 var start_pos = field.selectionStart;
1448                 var end_pos = field.selectionEnd;
1449                 field.value = field.value.substring(0, start_pos) + value + field.value.substring(end_pos, field.value.length);
1450         }
1451         else {
1452                 field.value += value;
1453         }
1454 }
1455
1456 function checkParentType(type,button) {
1457         if(button == null) {
1458                 return;
1459         }
1460         if(typeof disabledModules != 'undefined' && typeof(disabledModules[type]) != 'undefined') {
1461                 button.disabled='disabled';
1462         }
1463         else {
1464                 button.disabled = false;
1465         }
1466 }
1467
1468 function parseDate(input, format) {
1469         date = input.value;
1470         format = format.replace(/%/g, '');
1471         sep = format.charAt(1);
1472         yAt = format.indexOf('Y')
1473         // 1-1-06 or 1-12-06 or 1-1-2006 or 1-12-2006
1474         if(date.match(/^\d{1,2}[\/-]\d{1,2}[\/-]\d{2,4}$/) && yAt == 4) {
1475                 if(date.match(/^\d{1}[\/-].*$/)) date = '0' + date;
1476                 if(date.match(/^\d{2}[\/-]\d{1}[\/-].*$/)) date = date.substring(0,3) + '0' + date.substring(3,date.length);
1477                 if(date.match(/^\d{2}[\/-]\d{2}[\/-]\d{2}$/)) date = date.substring(0,6) + '20' + date.substring(6,date.length);
1478         }
1479         // 06-11-1 or 06-1-1
1480         else if(date.match(/^\d{2,4}[\/-]\d{1,2}[\/-]\d{1,2}$/)) {
1481                 if(date.match(/^\d{2}[\/-].*$/)) date = '20' + date;
1482                 if(date.match(/^\d{4}[\/-]\d{1}[\/-].*$/)) date = date.substring(0,5) + '0' + date.substring(5,date.length);
1483                 if(date.match(/^\d{4}[\/-]\d{2}[\/-]\d{1}$/)) date = date.substring(0,8) + '0' + date.substring(8,date.length);
1484         }
1485         else if(date.match(/^\d{4,8}$/)) { // digits only
1486                 digits = 0;
1487                 if(date.match(/^\d{8}$/)) digits = 8;// match for 8 digits
1488                 else if(date.match(/\d{6}/)) digits = 6;// match for 5 digits
1489                 else if(date.match(/\d{4}/)) digits = 4;// match for 5 digits
1490                 else if(date.match(/\d{5}/)) digits = 5;// match for 5 digits
1491
1492                 switch(yAt) {
1493                         case 0:
1494                                 switch(digits) {
1495                                         case 4: date = '20' + date.substring(0,2) + sep + '0' + date.substring(2, 3) + sep + '0' + date.substring(3,4); break;
1496                                         case 5: date = '20' + date.substring(0,2) + sep + date.substring(2, 4) + sep + '0' + date.substring(4,5); break;
1497                                         case 6: date = '20' + date.substring(0,2) + sep + date.substring(2, 4) + sep + date.substring(4,6); break;
1498                                         case 8: date = date.substring(0,4) + sep + date.substring(4, 6) + sep + date.substring(6,8); break;
1499                                 }
1500                                 break;
1501                         case 2:
1502                                 switch(digits) {
1503                                         case 4: date = '0' + date.substring(0,1) + sep + '20' + date.substring(1, 3) + sep + '0' + date.substring(3,4); break;
1504                                         case 5: date = date.substring(0,2) + sep + '20' + date.substring(2, 4) + sep + '0' + date.substring(4,5); break;
1505                                         case 6: date = date.substring(0,2) + sep + '20' + date.substring(2, 4) + sep + date.substring(4,6); break;
1506                                         case 8: date = date.substring(0,2) + sep + date.substring(2, 6) + sep + date.substring(6,8); break;
1507                                 }
1508                         case 4:
1509                                 switch(digits) {
1510                                         case 4: date = '0' + date.substring(0,1) + sep + '0' + date.substring(1, 2) + sep + '20' + date.substring(2,4); break;
1511                                         case 5: date = '0' + date.substring(0,1) + sep + date.substring(1, 3) + sep + '20' + date.substring(3,5); break;
1512                                         case 6: date = date.substring(0,2) + sep + date.substring(2, 4) + sep + '20' + date.substring(4,6); break;
1513                                         case 8: date = date.substring(0,2) + sep + date.substring(2, 4) + sep + date.substring(4,8); break;
1514                                 }
1515                                 break;
1516                 }
1517         }
1518         date = date.replace(/[\/-]/g, sep);
1519         input.value = date;
1520 }
1521
1522 // find obj's position
1523 function findElementPos(obj) {
1524     var x = 0;
1525     var y = 0;
1526     if (obj.offsetParent) {
1527       while (obj.offsetParent) {
1528         x += obj.offsetLeft;
1529         y += obj.offsetTop;
1530         obj = obj.offsetParent;
1531       }
1532     }//if offsetParent exists
1533     else if (obj.x && obj.y) {
1534       y += obj.y
1535       x += obj.x
1536     }
1537         return new coordinate(x, y);
1538 }//findElementPos
1539
1540
1541 // get dimensions of the browser window
1542 function getClientDim() {
1543         var nwX, nwY, seX, seY;
1544         if (self.pageYOffset) // all except Explorer
1545         {
1546           nwX = self.pageXOffset;
1547           seX = self.innerWidth + nwX;
1548           nwY = self.pageYOffset;
1549           seY = self.innerHeight + nwY;
1550         }
1551         else if (document.documentElement && document.documentElement.scrollTop) // Explorer 6 Strict
1552         {
1553           nwX = document.documentElement.scrollLeft;
1554           seX = document.documentElement.clientWidth + nwX;
1555           nwY = document.documentElement.scrollTop;
1556           seY = document.documentElement.clientHeight + nwY;
1557         }
1558         else if (document.body) // all other Explorers
1559         {
1560           nwX = document.body.scrollLeft;
1561           seX = document.body.clientWidth + nwX;
1562           nwY = document.body.scrollTop;
1563           seY = document.body.clientHeight + nwY;
1564         }
1565         return {'nw' : new coordinate(nwX, nwY), 'se' : new coordinate(seX, seY)};
1566 }
1567
1568 /**
1569 * stop propagation on events
1570 **/
1571 function freezeEvent(e) {
1572         if(e) {
1573           if (e.preventDefault) e.preventDefault();
1574           e.returnValue = false;
1575           e.cancelBubble = true;
1576           if (e.stopPropagation) e.stopPropagation();
1577           return false;
1578         }
1579 }
1580
1581
1582 /**
1583  * coordinate class
1584  **/
1585 function coordinate(_x, _y) {
1586   var x = _x;
1587   var y = _y;
1588   this.add = add;
1589   this.sub = sub;
1590   this.x = x;
1591   this.y = y;
1592
1593   function add(rh) {
1594     return new position(this.x + rh.x, this.y + rh.y);
1595   }
1596
1597   function sub(rh) {
1598     return new position(this.x + rh.x, this.y + rh.y);
1599   }
1600 }
1601
1602 // sends theForm via AJAX and fills in the theDiv
1603 function sendAndRetrieve(theForm, theDiv, loadingStr) {
1604         function success(data) {
1605                 document.getElementById(theDiv).innerHTML = data.responseText;
1606                 ajaxStatus.hideStatus();
1607         }
1608         if(typeof loadingStr == 'undefined') SUGAR.language.get('app_strings', 'LBL_LOADING');
1609         ajaxStatus.showStatus(loadingStr);
1610     oForm = new YAHOO.util.Element(theForm);
1611     if ( oForm.get('enctype') && oForm.get('enctype') == 'multipart/form-data' ) {
1612         // the second argument is true to indicate file upload.
1613         YAHOO.util.Connect.setForm(theForm, true);
1614         var cObj = YAHOO.util.Connect.asyncRequest('POST', 'index.php', {upload: success, failure: success});
1615     } else {
1616         YAHOO.util.Connect.setForm(theForm);
1617         var cObj = YAHOO.util.Connect.asyncRequest('POST', 'index.php', {success: success, failure: success});
1618     }
1619         return false;
1620 }
1621
1622 //save the form and redirect
1623 function sendAndRedirect(theForm, loadingStr, redirect_location) {
1624         function success(data) {
1625                 if(redirect_location){
1626                         location.href=redirect_location;
1627                 }
1628                 ajaxStatus.hideStatus();
1629         }
1630         if(typeof loadingStr == 'undefined') SUGAR.language.get('app_strings', 'LBL_LOADING');
1631         ajaxStatus.showStatus(loadingStr);
1632     oForm = new YAHOO.util.Element(theForm);
1633     if ( oForm.get('enctype') && oForm.get('enctype') == 'multipart/form-data' ) {
1634         // the second argument is true to indicate file upload.
1635         YAHOO.util.Connect.setForm(theForm, true);
1636         var cObj = YAHOO.util.Connect.asyncRequest('POST', 'index.php', {upload: success, failure: success});
1637     } else {
1638         YAHOO.util.Connect.setForm(theForm);
1639         var cObj = YAHOO.util.Connect.asyncRequest('POST', 'index.php', {success: success, failure: success});
1640     }
1641         return false;
1642 }
1643
1644 function saveForm(theForm, theDiv, loadingStr) {
1645         if(check_form(theForm)){
1646                 for(i = 0; i < ajaxFormArray.length; i++){
1647                         if(ajaxFormArray[i] == theForm){
1648                                 ajaxFormArray.splice(i, 1);
1649                         }
1650                 }
1651                 return sendAndRetrieve(theForm, loadingStr, theDiv);
1652         }
1653         else
1654                 return false;
1655 }
1656
1657 // Builds a "snapshot" of the form, so we can use it to see if someone has changed it.
1658 function snapshotForm(theForm) {
1659     var snapshotTxt = '';
1660     var elemList = theForm.elements;
1661     var elem;
1662     var elemType;
1663
1664     for( var i = 0; i < elemList.length ; i++ ) {
1665         elem = elemList[i];
1666         if ( typeof(elem.type) == 'undefined' ) {
1667             continue;
1668         }
1669
1670         elemType = elem.type.toLowerCase();
1671
1672         snapshotTxt = snapshotTxt + elem.name;
1673
1674         if ( elemType == 'text' || elemType == 'textarea' || elemType == 'password' ) {
1675             snapshotTxt = snapshotTxt + elem.value;
1676         }
1677         else if ( elemType == 'select' || elemType == 'select-one' || elemType == 'select-multiple' ) {
1678             var optionList = elem.options;
1679             for ( var ii = 0 ; ii < optionList.length ; ii++ ) {
1680                 if ( optionList[ii].selected ) {
1681                     snapshotTxt = snapshotTxt + optionList[ii].value;
1682                 }
1683             }
1684         }
1685         else if ( elemType == 'radio' || elemType == 'checkbox' ) {
1686             if ( elem.selected ) {
1687                 snapshotTxt = snapshotTxt + 'checked';
1688             }
1689         }
1690         else if ( elemType == 'hidden' ) {
1691             snapshotTxt = snapshotTxt + elem.value;
1692         }
1693     }
1694
1695     return snapshotTxt;
1696 }
1697
1698 function initEditView(theForm) {
1699     if (SUGAR.util.ajaxCallInProgress()) {
1700         window.setTimeout(function(){initEditView(theForm);}, 100);
1701         return;
1702     }
1703
1704     if ( theForm == null || theForm.id == null ) {
1705         // Not much we can do here.
1706         return;
1707     }
1708
1709     // we don't need to check if the data is changed in the search popup
1710     if (theForm.id == 'popup_query_form' || theForm.id == 'MassUpdate') {
1711         return;
1712     }
1713         if ( typeof editViewSnapshots == 'undefined' || editViewSnapshots == null ) {
1714         editViewSnapshots = new Object();
1715     }
1716     if ( typeof SUGAR.loadedForms == 'undefined' || SUGAR.loadedForms == null) {
1717         SUGAR.loadedForms = new Object();
1718     }
1719
1720     editViewSnapshots[theForm.id] = snapshotForm(theForm);
1721     SUGAR.loadedForms[theForm.id] = true;
1722 }
1723
1724 function onUnloadEditView(theForm) {
1725
1726         var dataHasChanged = false;
1727
1728     if ( typeof editViewSnapshots == 'undefined' ) {
1729         // No snapshots, move along
1730         return;
1731     }
1732
1733     if ( typeof theForm == 'undefined' ) {
1734         // Need to check all editViewSnapshots
1735         for ( var idx in editViewSnapshots ) {
1736
1737             theForm = document.getElementById(idx);
1738             // console.log('DEBUG: Checking all forms '+theForm.id);
1739             if ( theForm == null
1740                  || typeof editViewSnapshots[theForm.id] == 'undefined'
1741                  || editViewSnapshots[theForm.id] == null
1742                  || !SUGAR.loadedForms[theForm.id]) {
1743                 continue;
1744             }
1745
1746             var snap = snapshotForm(theForm);
1747             if ( editViewSnapshots[theForm.id] != snap ) {
1748                 dataHasChanged = true;
1749             }
1750         }
1751     } else {
1752         // Just need to check a single form for changes
1753                 if ( editViewSnapshots == null  || typeof theForm.id == 'undefined' || typeof editViewSnapshots[theForm.id] == 'undefined' || editViewSnapshots[theForm.id] == null ) {
1754             return;
1755         }
1756
1757         // console.log('DEBUG: Checking one form '+theForm.id);
1758         if ( editViewSnapshots[theForm.id] != snapshotForm(theForm) ) {
1759             // Data has changed.
1760                 dataHasChanged = true;
1761         }
1762     }
1763
1764     if ( dataHasChanged == true ) {
1765         return SUGAR.language.get('app_strings','WARN_UNSAVED_CHANGES');
1766     } else {
1767         return;
1768     }
1769
1770 }
1771
1772 function disableOnUnloadEditView(theForm) {
1773     // If you don't pass anything in, it disables all checking
1774     if ( typeof theForm == 'undefined' || typeof editViewSnapshots == 'undefined' || theForm == null || editViewSnapshots == null) {
1775         window.onbeforeunload = null;
1776         editViewSnapshots = null;
1777
1778         // console.log('DEBUG: Disabling all edit view checks');
1779
1780     } else {
1781         // Otherwise, it just disables it for this form
1782         if ( typeof(theForm.id) != 'undefined' && typeof(editViewSnapshots[theForm.id]) != 'undefined' ) {
1783             editViewSnapshots[theForm.id] = null;
1784         }
1785
1786         // console.log('DEBUG : Disabling just checks for '+theForm.id);
1787
1788     }
1789 }
1790
1791 /*
1792 * save some forms using an ajax call
1793 * theForms - the ids of all of theh forms to save
1794 * savingStr - the string to display when saving the form
1795 * completeStr - the string to display when the form has been saved
1796 */
1797 function saveForms( savingStr, completeStr) {
1798         index = 0;
1799         theForms = ajaxFormArray;
1800         function success(data) {
1801                 var theForm = document.getElementById(ajaxFormArray[0]);
1802                 document.getElementById('multiedit_'+theForm.id).innerHTML = data.responseText;
1803                 var saveAllButton = document.getElementById('ajaxsaveall');
1804                 ajaxFormArray.splice(index, 1);
1805                 if(saveAllButton && ajaxFormArray.length <= 1){
1806                 saveAllButton.style.visibility = 'hidden';
1807         }
1808                 index++;
1809                 if(index == theForms.length){
1810                         ajaxStatus.showStatus(completeStr);
1811                 window.setTimeout('ajaxStatus.hideStatus();', 2000);
1812                 if(saveAllButton)
1813                         saveAllButton.style.visibility = 'hidden';
1814         }
1815
1816
1817         }
1818         if(typeof savingStr == 'undefined') SUGAR.language.get('app_strings', 'LBL_LOADING');
1819         ajaxStatus.showStatus(savingStr);
1820
1821         //loop through the forms saving each one
1822         for(i = 0; i < theForms.length; i++){
1823                 var theForm = document.getElementById(theForms[i]);
1824                 if(check_form(theForm.id)){
1825                         theForm.action.value='AjaxFormSave';
1826                         YAHOO.util.Connect.setForm(theForm);
1827                         var cObj = YAHOO.util.Connect.asyncRequest('POST', 'index.php', {success: success, failure: success});
1828                 }else{
1829                         ajaxStatus.hideStatus();
1830                 }
1831                 lastSubmitTime = lastSubmitTime-2000;
1832         }
1833         return false;
1834 }
1835
1836 // -- start sugarListView class
1837 // js functions used for ListView
1838 function sugarListView() {
1839 }
1840
1841
1842 sugarListView.prototype.confirm_action = function(del) {
1843         if (del == 1) {
1844                 return confirm( SUGAR.language.get('app_strings', 'NTC_DELETE_CONFIRMATION_NUM') + sugarListView.get_num_selected()  + SUGAR.language.get('app_strings', 'NTC_DELETE_SELECTED_RECORDS'));
1845         }
1846         else {
1847                 return confirm( SUGAR.language.get('app_strings', 'NTC_UPDATE_CONFIRMATION_NUM') + sugarListView.get_num_selected()  + SUGAR.language.get('app_strings', 'NTC_DELETE_SELECTED_RECORDS'));
1848         }
1849
1850 }
1851 sugarListView.get_num_selected = function () {
1852         if(typeof document.MassUpdate != 'undefined') {
1853                 the_form = document.MassUpdate;
1854                 for(var wp = 0; wp < the_form.elements.length; wp++) {
1855                         if(typeof the_form.elements[wp].name != 'undefined' && the_form.elements[wp].name == 'selectCount[]') {
1856                                 return the_form.elements[wp].value;
1857                         }
1858                 }
1859         }
1860         return 0;
1861
1862 }
1863 sugarListView.update_count = function(count, add) {
1864         if(typeof document.MassUpdate != 'undefined') {
1865                 the_form = document.MassUpdate;
1866                 for(var wp = 0; wp < the_form.elements.length; wp++) {
1867                         if(typeof the_form.elements[wp].name != 'undefined' && the_form.elements[wp].name == 'selectCount[]') {
1868                                 if(add) {
1869                                         the_form.elements[wp].value = parseInt(the_form.elements[wp].value,10) + count;
1870                                         if (the_form.select_entire_list.value == 1 && the_form.show_plus.value) {
1871                                                 the_form.elements[wp].value += '+';
1872                                         }
1873                                 } else {
1874                                         if (the_form.select_entire_list.value == 1 && the_form.show_plus.value) {
1875                                         the_form.elements[wp].value = count + '+';
1876                                     } else {
1877                                         the_form.elements[wp].value = count;
1878                                     }
1879                                 }
1880                         }
1881                 }
1882         }
1883 }
1884 sugarListView.prototype.use_external_mail_client = function(no_record_txt, module) {
1885         selected_records = sugarListView.get_checks_count();
1886         if(selected_records <1) {
1887                 alert(no_record_txt);
1888         return false;
1889         }
1890
1891     if (document.MassUpdate.select_entire_list.value == 1) {
1892                 if (totalCount > 10) {
1893                         alert(totalCountError);
1894                         return;
1895                 } // if
1896                 select = false;
1897         }
1898         else if (document.MassUpdate.massall.checked == true)
1899                 select = false;
1900         else
1901                 select = true;
1902     sugarListView.get_checks();
1903     var ids = "";
1904     if(select) { // use selected items
1905                 ids = document.MassUpdate.uid.value;
1906         }
1907         else { // use current page
1908                 inputs = document.MassUpdate.elements;
1909                 ar = new Array();
1910                 for(i = 0; i < inputs.length; i++) {
1911                         if(inputs[i].name == 'mass[]' && inputs[i].checked && typeof(inputs[i].value) != 'function') {
1912                                 ar.push(inputs[i].value);
1913                         }
1914                 }
1915                 ids = ar.join(',');
1916         }
1917     YAHOO.util.Connect.asyncRequest("POST", "index.php?", {
1918         success: this.use_external_mail_client_callback
1919     }, SUGAR.util.paramsToUrl({
1920         module: "Emails",
1921         action: "Compose",
1922         listViewExternalClient: 1,
1923         action_module: module,
1924         uid: ids,
1925         to_pdf:1
1926     }));
1927
1928         return false;
1929 }
1930
1931 sugarListView.prototype.use_external_mail_client_callback = function(o)
1932 {
1933     if (o.responseText)
1934         location.href = 'mailto:' + o.responseText;
1935 }
1936
1937 sugarListView.prototype.send_form_for_emails = function(select, currentModule, action, no_record_txt,action_module,totalCount, totalCountError) {
1938         if ( typeof(SUGAR.config.email_sugarclient_listviewmaxselect) != 'undefined' ) {
1939             maxCount = 10;
1940         }
1941         else {
1942             maxCount = SUGAR.config.email_sugarclient_listviewmaxselect;
1943         }
1944
1945     if (document.MassUpdate.select_entire_list.value == 1) {
1946                 if (totalCount > maxCount) {
1947                         alert(totalCountError);
1948                         return;
1949                 } // if
1950                 select = false;
1951         }
1952         else if (document.MassUpdate.massall.checked == true)
1953                 select = false;
1954         else
1955                 select = true;
1956
1957         sugarListView.get_checks();
1958         // create new form to post (can't access action property of MassUpdate form due to action input)
1959         var newForm = document.createElement('form');
1960         newForm.method = 'post';
1961         newForm.action = action;
1962         newForm.name = 'newForm';
1963         newForm.id = 'newForm';
1964         var uidTa = document.createElement('textarea');
1965         uidTa.name = 'uid';
1966         uidTa.style.display = 'none';
1967
1968         if(select) { // use selected items
1969                 uidTa.value = document.MassUpdate.uid.value;
1970         }
1971         else { // use current page
1972                 inputs = document.MassUpdate.elements;
1973                 ar = new Array();
1974                 for(i = 0; i < inputs.length; i++) {
1975                         if(inputs[i].name == 'mass[]' && inputs[i].checked && typeof(inputs[i].value) != 'function') {
1976                                 ar.push(inputs[i].value);
1977                         }
1978                 }
1979                 uidTa.value = ar.join(',');
1980         }
1981
1982         if(uidTa.value == '') {
1983                 alert(no_record_txt);
1984                 return false;
1985         }
1986
1987         var selectedArray = uidTa.value.split(",");
1988         if(selectedArray.length > maxCount) {
1989                 alert(totalCountError);
1990                 return;
1991         } // if
1992         newForm.appendChild(uidTa);
1993
1994         var moduleInput = document.createElement('input');
1995         moduleInput.name = 'module';
1996         moduleInput.type = 'hidden';
1997         moduleInput.value = currentModule;
1998         newForm.appendChild(moduleInput);
1999
2000         var actionInput = document.createElement('input');
2001         actionInput.name = 'action';
2002         actionInput.type = 'hidden';
2003         actionInput.value = 'Compose';
2004         newForm.appendChild(actionInput);
2005
2006         if (typeof action_module != 'undefined' && action_module!= '') {
2007                 var actionModule = document.createElement('input');
2008                 actionModule.name = 'action_module';
2009                 actionModule.type = 'hidden';
2010                 actionModule.value = action_module;
2011                 newForm.appendChild(actionModule);
2012         }
2013         //return_info must follow this pattern."&return_module=Accounts&return_action=index"
2014         if (typeof return_info!= 'undefined' && return_info != '') {
2015                 var params= return_info.split('&');
2016                 if (params.length > 0) {
2017                         for (var i=0;i< params.length;i++) {
2018                                 if (params[i].length > 0) {
2019                                         var param_nv=params[i].split('=');
2020                                         if (param_nv.length==2){
2021                                                 returnModule = document.createElement('input');
2022                                                 returnModule.name = param_nv[0];
2023                                                 returnModule.type = 'hidden';
2024                                                 returnModule.value = param_nv[1];
2025                                                 newForm.appendChild(returnModule);
2026                                         }
2027                                 }
2028                         }
2029                 }
2030         }
2031
2032         var isAjaxCall = document.createElement('input');
2033         isAjaxCall.name = 'ajaxCall';
2034         isAjaxCall.type = 'hidden';
2035         isAjaxCall.value = true;
2036         newForm.appendChild(isAjaxCall);
2037
2038         var isListView = document.createElement('input');
2039         isListView.name = 'ListView';
2040         isListView.type = 'hidden';
2041         isListView.value = true;
2042         newForm.appendChild(isListView);
2043
2044         var toPdf = document.createElement('input');
2045         toPdf.name = 'to_pdf';
2046         toPdf.type = 'hidden';
2047         toPdf.value = true;
2048         newForm.appendChild(toPdf);
2049
2050         //Grab the Quick Compose package for the listview
2051     YAHOO.util.Connect.setForm(newForm);
2052     var callback =
2053         {
2054           success: function(o) {
2055               var resp = YAHOO.lang.JSON.parse(o.responseText);
2056               var quickComposePackage = new Object();
2057               quickComposePackage.composePackage = resp;
2058               quickComposePackage.fullComposeUrl = 'index.php?module=Emails&action=Compose&ListView=true' +
2059                                                    '&uid=' + uidTa.value + '&action_module=' + action_module;
2060
2061               SUGAR.quickCompose.init(quickComposePackage);
2062           }
2063         }
2064
2065         YAHOO.util.Connect.asyncRequest('POST','index.php', callback,null);
2066
2067         // awu Bug 18624: Fixing issue where a canceled Export and unselect of row will persist the uid field, clear the field
2068         document.MassUpdate.uid.value = '';
2069
2070         return false;
2071 }
2072
2073 sugarListView.prototype.send_form = function(select, currentModule, action, no_record_txt,action_module,return_info) {
2074         if (document.MassUpdate.select_entire_list.value == 1) {
2075
2076                 if(sugarListView.get_checks_count() < 1) {
2077                    alert(no_record_txt);
2078                    return false;
2079                 }
2080
2081                 var href = action;
2082                 if ( action.indexOf('?') != -1 )
2083                         href += '&module=' + currentModule;
2084                 else
2085                         href += '?module=' + currentModule;
2086
2087                 if (return_info)
2088                         href += return_info;
2089         var newForm = document.createElement('form');
2090         newForm.method = 'post';
2091         newForm.action = href;
2092         newForm.name = 'newForm';
2093         newForm.id = 'newForm';
2094         var postTa = document.createElement('textarea');
2095         postTa.name = 'current_post';
2096         postTa.value = document.MassUpdate.current_query_by_page.value;
2097         postTa.style.display = 'none';
2098         newForm.appendChild(postTa);
2099         document.MassUpdate.parentNode.appendChild(newForm);
2100         newForm.submit();
2101                 return;
2102         }
2103         else if (document.MassUpdate.massall.checked == true)
2104                 select = false;
2105         else
2106                 select = true;
2107
2108         sugarListView.get_checks();
2109         // create new form to post (can't access action property of MassUpdate form due to action input)
2110         var newForm = document.createElement('form');
2111         newForm.method = 'post';
2112         newForm.action = action;
2113         newForm.name = 'newForm';
2114         newForm.id = 'newForm';
2115         var uidTa = document.createElement('textarea');
2116         uidTa.name = 'uid';
2117         uidTa.style.display = 'none';
2118         uidTa.value = document.MassUpdate.uid.value;
2119
2120         if(uidTa.value == '') {
2121                 alert(no_record_txt);
2122                 return false;
2123         }
2124
2125         newForm.appendChild(uidTa);
2126
2127         var moduleInput = document.createElement('input');
2128         moduleInput.name = 'module';
2129         moduleInput.type = 'hidden';
2130         moduleInput.value = currentModule;
2131         newForm.appendChild(moduleInput);
2132
2133         var actionInput = document.createElement('input');
2134         actionInput.name = 'action';
2135         actionInput.type = 'hidden';
2136         actionInput.value = 'index';
2137         newForm.appendChild(actionInput);
2138
2139         if (typeof action_module != 'undefined' && action_module!= '') {
2140                 var actionModule = document.createElement('input');
2141                 actionModule.name = 'action_module';
2142                 actionModule.type = 'hidden';
2143                 actionModule.value = action_module;
2144                 newForm.appendChild(actionModule);
2145         }
2146         //return_info must follow this pattern."&return_module=Accounts&return_action=index"
2147         if (typeof return_info!= 'undefined' && return_info != '') {
2148                 var params= return_info.split('&');
2149                 if (params.length > 0) {
2150                         for (var i=0;i< params.length;i++) {
2151                                 if (params[i].length > 0) {
2152                                         var param_nv=params[i].split('=');
2153                                         if (param_nv.length==2){
2154                                                 returnModule = document.createElement('input');
2155                                                 returnModule.name = param_nv[0];
2156                                                 returnModule.type = 'hidden';
2157                                                 returnModule.value = param_nv[1];
2158                                                 newForm.appendChild(returnModule);
2159                                         }
2160                                 }
2161                         }
2162                 }
2163         }
2164
2165         document.MassUpdate.parentNode.appendChild(newForm);
2166
2167         newForm.submit();
2168         // awu Bug 18624: Fixing issue where a canceled Export and unselect of row will persist the uid field, clear the field
2169         document.MassUpdate.uid.value = '';
2170
2171         return false;
2172 }
2173 //return a count of checked row.
2174 sugarListView.get_checks_count = function() {
2175         ar = new Array();
2176
2177         if(document.MassUpdate.uid.value != '') {
2178                 oldUids = document.MassUpdate.uid.value.split(',');
2179                 for(uid in oldUids) {
2180                     if(typeof(oldUids[uid]) != 'function') {
2181                        ar[oldUids[uid]] = 1;
2182                     }
2183                 }
2184         }
2185         // build associated array of uids, associated array ensures uniqueness
2186         inputs = document.MassUpdate.elements;
2187         for(i = 0; i < inputs.length; i++) {
2188                 if(inputs[i].name == 'mass[]') {
2189                         ar[inputs[i].value]     = (inputs[i].checked) ? 1 : 0; // 0 of it is unchecked
2190             }
2191         }
2192
2193         // build regular array of uids
2194         uids = new Array();
2195         for(i in ar) {
2196                 if((typeof(ar[i]) != 'function') && ar[i] == 1) {
2197                    uids.push(i);
2198                 }
2199         }
2200
2201         return uids.length;
2202 }
2203
2204 // saves the checks on the current page into the uid textarea
2205 sugarListView.get_checks = function() {
2206         ar = new Array();
2207         if(typeof document.MassUpdate != 'undefined' ){
2208         if(document.MassUpdate.uid.value != '') {
2209                 oldUids = document.MassUpdate.uid.value.split(',');
2210                 for(uid in oldUids) {
2211                     if(typeof(oldUids[uid]) != 'function') {
2212                        ar[oldUids[uid]] = 1;
2213                     }
2214                 }
2215         }
2216
2217         // build associated array of uids, associated array ensures uniqueness
2218         inputs = document.MassUpdate.elements;
2219         for(i = 0; i < inputs.length; i++) {
2220                 if(inputs[i].name == 'mass[]') {
2221                         ar[inputs[i].value]     = (inputs[i].checked) ? 1 : 0; // 0 of it is unchecked
2222                 }
2223         }
2224
2225         // build regular array of uids
2226         uids = new Array();
2227         for(i in ar) {
2228                 if(typeof(ar[i]) != 'function' && ar[i] == 1) {
2229                    uids.push(i);
2230                 }
2231         }
2232
2233         document.MassUpdate.uid.value = uids.join(',');
2234
2235         if(uids.length == 0) return false; // return false if no checks to get
2236         return true; // there are saved checks
2237         }
2238         else return false;
2239 }
2240
2241 sugarListView.prototype.order_checks = function(order,orderBy,moduleString){
2242         checks = sugarListView.get_checks();
2243         eval('document.MassUpdate.' + moduleString + '.value = orderBy');
2244         document.MassUpdate.lvso.value = order;
2245         if(typeof document.MassUpdate.massupdate != 'undefined') {
2246            document.MassUpdate.massupdate.value = 'false';
2247         }
2248
2249         //we must first clear the action of massupdate, change it to index
2250    document.MassUpdate.action.value = document.MassUpdate.return_action.value;
2251    document.MassUpdate.return_module.value='';
2252    document.MassUpdate.return_action.value='';
2253    document.MassUpdate.submit();
2254
2255         return !checks;
2256 }
2257 sugarListView.prototype.save_checks = function(offset, moduleString) {
2258         checks = sugarListView.get_checks();
2259         if(typeof document.MassUpdate != 'undefined'){
2260         eval('document.MassUpdate.' + moduleString + '.value = offset');
2261
2262         if(typeof document.MassUpdate.massupdate != 'undefined') {
2263            document.MassUpdate.massupdate.value = 'false';
2264         }
2265
2266         //we must first clear the action of massupdate, change it to index
2267        document.MassUpdate.action.value = document.MassUpdate.return_action.value;
2268        document.MassUpdate.return_module.value='';
2269        document.MassUpdate.return_action.value='';
2270            document.MassUpdate.submit();
2271
2272
2273         return !checks;
2274         }
2275         else return false;
2276 }
2277
2278 sugarListView.prototype.check_item = function(cb, form) {
2279         if(cb.checked) {
2280                 sugarListView.update_count(1, true);
2281
2282         }else{
2283                 sugarListView.update_count(-1, true);
2284                 if(typeof form != 'undefined' && form != null) {
2285                         sugarListView.prototype.updateUid(cb, form);
2286                 }
2287         }
2288         sugarListView.prototype.toggleSelected();
2289 }
2290
2291 sugarListView.prototype.toggleSelected = function() {
2292
2293         var numSelected = sugarListView.get_num_selected();
2294         var selectedRecords = document.getElementById("selectedRecordsTop");
2295         var selectActions = document.getElementById("selectActions");
2296         var selectActionsDisabled = document.getElementById("selectActionsDisabled");
2297         if(numSelected > 0) {
2298                 selectedRecords.style.display = "inline-block";
2299         $(".selectActionsDisabled").css("display", "none");
2300         jQuery('ul[name=selectActions]').each(function () {
2301             jQuery(this).css("display", "inline-block");
2302         });
2303
2304         } else {
2305                 selectedRecords.style.display = "none";
2306         $(".selectActionsDisabled").css("display", "inline-block");
2307         jQuery('ul[name=selectActions]').each(function () {
2308                     jQuery(this).css("display", "none");
2309         });
2310         }
2311
2312 }
2313
2314 /**#28000, remove the  unselect record id from MassUpdate.uid **/
2315 sugarListView.prototype.updateUid = function(cb  , form){
2316     if(form.name == 'MassUpdate' && form.uid && form.uid.value && cb.value && form.uid.value.indexOf(cb.value) != -1){
2317         if(form.uid.value.indexOf(','+cb.value)!= -1){
2318             form.uid.value = form.uid.value.replace(','+cb.value , '');
2319         }else if(form.uid.value.indexOf(cb.value + ',')!= -1){
2320             form.uid.value = form.uid.value.replace(cb.value + ',' , '');
2321         }else if(form.uid.value.indexOf(cb.value)!= -1){
2322             form.uid.value = form.uid.value.replace(cb.value  , '');
2323         }
2324     }
2325 }
2326
2327 sugarListView.prototype.check_entire_list = function(form, field, value, list_count) {
2328         // count number of items
2329         count = 0;
2330         document.MassUpdate.massall.checked = true;
2331         document.MassUpdate.massall.disabled = true;
2332
2333         for (i = 0; i < form.elements.length; i++) {
2334                 if(form.elements[i].name == field && form.elements[i].disabled == false) {
2335                         if(form.elements[i].checked != value) count++;
2336                                 form.elements[i].checked = value;
2337                                 form.elements[i].disabled = true;
2338                 }
2339         }
2340         document.MassUpdate.select_entire_list.value = 1;
2341         sugarListView.update_count(list_count, false);
2342     sugarListView.prototype.toggleSelected();
2343 }
2344
2345 sugarListView.prototype.check_all = function(form, field, value, pageTotal) {
2346         // count number of items
2347         count = 0;
2348         document.MassUpdate.massall.checked = value;
2349         if (document.MassUpdate.select_entire_list &&
2350                 document.MassUpdate.select_entire_list.value == 1)
2351                 document.MassUpdate.massall.disabled = true;
2352         else
2353                 document.MassUpdate.massall.disabled = false;
2354
2355         for (i = 0; i < form.elements.length; i++) {
2356                 if(form.elements[i].name == field && !(form.elements[i].disabled == true && form.elements[i].checked == false)) {
2357                         form.elements[i].disabled = false;
2358
2359                         if(form.elements[i].checked != value)
2360                                 count++;
2361                         form.elements[i].checked = value;
2362                         if(!value){
2363                                 sugarListView.prototype.updateUid(form.elements[i], form);
2364                         }
2365                 }
2366         }
2367         if (pageTotal >= 0)
2368                 sugarListView.update_count(pageTotal);
2369         else if(value)
2370                 sugarListView.update_count(count, true);
2371         else
2372                 sugarListView.update_count(-1 * count, true);
2373
2374         sugarListView.prototype.toggleSelected();
2375 }
2376 sugarListView.check_all = sugarListView.prototype.check_all;
2377 sugarListView.confirm_action = sugarListView.prototype.confirm_action;
2378
2379 sugarListView.prototype.check_boxes = function() {
2380         var inputsCount = 0;
2381         var checkedCount = 0;
2382         var existing_onload = window.onload;
2383         var theForm = document.MassUpdate;
2384         inputs_array = theForm.elements;
2385
2386         if(typeof theForm.uid.value != 'undefined' && theForm.uid.value != "") {
2387                 checked_items = theForm.uid.value.split(",");
2388                 if (theForm.select_entire_list.value == 1)
2389                         document.MassUpdate.massall.disabled = true;
2390
2391                 for(var wp = 0 ; wp < inputs_array.length; wp++) {
2392                         if(inputs_array[wp].name == "mass[]") {
2393                                 inputsCount++;
2394                                 if (theForm.select_entire_list.value == 1) {
2395                                         inputs_array[wp].checked = true;
2396                                         inputs_array[wp].disabled = true;
2397                                         checkedCount++;
2398                                 }
2399                                 else {
2400                                         for(i in checked_items) {
2401                                                 if(inputs_array[wp].value == checked_items[i]) {
2402                                                         checkedCount++;
2403                                                         inputs_array[wp].checked = true;
2404                                                         sugarListView.prototype.check_item(inputs_array[wp], document.MassUpdate);
2405                                                 }
2406                                         }
2407                                 }
2408                         }
2409                 }
2410         }
2411         else {
2412                 for(var wp = 0 ; wp < inputs_array.length; wp++) {
2413                         if(inputs_array[wp].name == "mass[]") {
2414                                 inputs_array[wp].checked = false;
2415                                 inputs_array[wp].disabled = false;
2416                         }
2417                 }
2418                 if (document.MassUpdate.massall) {
2419                         document.MassUpdate.massall.checked = false;
2420                         document.MassUpdate.massall.disabled = false;
2421                 }
2422                 sugarListView.update_count(0)
2423         }
2424         if(checkedCount > 0 && checkedCount == inputsCount)
2425                 document.MassUpdate.massall.checked = true;
2426 }
2427
2428
2429 /**
2430  * This function is used in Email Template Module's listview.
2431  * It will check whether the templates are used in Campaing->EmailMarketing.
2432  * If true, it will notify user.
2433  */
2434 function check_used_email_templates() {
2435         var ids = document.MassUpdate.uid.value;
2436         var call_back = {
2437                 success:function(r) {
2438                         if(r.responseText != '') {
2439                                 if(!confirm(SUGAR.language.get('app_strings','NTC_TEMPLATES_IS_USED') + r.responseText)) {
2440                                         return false;
2441                                 }
2442                         }
2443                         document.MassUpdate.submit();
2444                         return false;
2445                 }
2446                 };
2447         url = "index.php?module=EmailTemplates&action=CheckDeletable&from=ListView&to_pdf=1&records="+ids;
2448         YAHOO.util.Connect.asyncRequest('POST',url, call_back,null);
2449
2450 }
2451
2452 sugarListView.prototype.send_mass_update = function(mode, no_record_txt, del) {
2453         formValid = check_form('MassUpdate');
2454         if(!formValid && !del) return false;
2455
2456
2457         if (document.MassUpdate.select_entire_list &&
2458                 document.MassUpdate.select_entire_list.value == 1)
2459                 mode = 'entire';
2460         else
2461                 mode = 'selected';
2462
2463         var ar = new Array();
2464
2465         switch(mode) {
2466                 case 'selected':
2467                         for(var wp = 0; wp < document.MassUpdate.elements.length; wp++) {
2468                                 var reg_for_existing_uid = new RegExp('^'+RegExp.escape(document.MassUpdate.elements[wp].value)+'[\s]*,|,[\s]*'+RegExp.escape(document.MassUpdate.elements[wp].value)+'[\s]*,|,[\s]*'+RegExp.escape(document.MassUpdate.elements[wp].value)+'$|^'+RegExp.escape(document.MassUpdate.elements[wp].value)+'$');
2469                                 //when the uid is already in document.MassUpdate.uid.value, we should not add it to ar.
2470                                 if(typeof document.MassUpdate.elements[wp].name != 'undefined'
2471                                         && document.MassUpdate.elements[wp].name == 'mass[]'
2472                                                 && document.MassUpdate.elements[wp].checked
2473                                                 && !reg_for_existing_uid.test(document.MassUpdate.uid.value)) {
2474                                                         ar.push(document.MassUpdate.elements[wp].value);
2475                                 }
2476                         }
2477                         if(document.MassUpdate.uid.value != '') document.MassUpdate.uid.value += ',';
2478                         document.MassUpdate.uid.value += ar.join(',');
2479                         if(document.MassUpdate.uid.value == '') {
2480                                 alert(no_record_txt);
2481                                 return false;
2482                         }
2483                         if(typeof(current_admin_id)!='undefined' && document.MassUpdate.module!= 'undefined' && document.MassUpdate.module.value == 'Users' && (document.MassUpdate.is_admin.value!='' || document.MassUpdate.status.value!='')) {
2484                                 var reg_for_current_admin_id = new RegExp('^'+current_admin_id+'[\s]*,|,[\s]*'+current_admin_id+'[\s]*,|,[\s]*'+current_admin_id+'$|^'+current_admin_id+'$');
2485                                 if(reg_for_current_admin_id.test(document.MassUpdate.uid.value)) {
2486                                         //if current user is admin, we should not allow massupdate the user_type and status of himself
2487                                         alert(SUGAR.language.get('Users','LBL_LAST_ADMIN_NOTICE'));
2488                                         return false;
2489                                 }
2490                         }
2491                         break;
2492                 case 'entire':
2493                         var entireInput = document.createElement('input');
2494                         entireInput.name = 'entire';
2495                         entireInput.type = 'hidden';
2496                         entireInput.value = 'index';
2497                         document.MassUpdate.appendChild(entireInput);
2498                         //confirm(no_record_txt);
2499                         if(document.MassUpdate.module!= 'undefined' && document.MassUpdate.module.value == 'Users' && (document.MassUpdate.is_admin.value!='' || document.MassUpdate.status.value!='')) {
2500                                 alert(SUGAR.language.get('Users','LBL_LAST_ADMIN_NOTICE'));
2501                                 return false;
2502                         }
2503                         break;
2504         }
2505
2506         if(!sugarListView.confirm_action(del))
2507                 return false;
2508
2509         if(del == 1) {
2510                 var deleteInput = document.createElement('input');
2511                 deleteInput.name = 'Delete';
2512                 deleteInput.type = 'hidden';
2513                 deleteInput.value = true;
2514                 document.MassUpdate.appendChild(deleteInput);
2515                 if(document.MassUpdate.module!= 'undefined' && document.MassUpdate.module.value == 'EmailTemplates') {
2516                         check_used_email_templates();
2517                         return false;
2518                 }
2519
2520         }
2521
2522         document.MassUpdate.submit();
2523         return false;
2524 }
2525
2526
2527 sugarListView.prototype.clear_all = function() {
2528         document.MassUpdate.uid.value = '';
2529         document.MassUpdate.select_entire_list.value = 0;
2530         sugarListView.check_all(document.MassUpdate, 'mass[]', false);
2531         document.MassUpdate.massall.checked = false;
2532         document.MassUpdate.massall.disabled = false;
2533         sugarListView.update_count(0);
2534         sugarListView.prototype.toggleSelected();
2535 }
2536
2537 sListView = new sugarListView();
2538 // -- end sugarListView class
2539
2540 // format and unformat numbers
2541 function unformatNumber(n, num_grp_sep, dec_sep) {
2542         var x=unformatNumberNoParse(n, num_grp_sep, dec_sep);
2543         x=x.toString();
2544         if(x.length > 0) {
2545                 return parseFloat(x);
2546         }
2547         return '';
2548 }
2549
2550 function unformatNumberNoParse(n, num_grp_sep, dec_sep) {
2551         if(typeof num_grp_sep == 'undefined' || typeof dec_sep == 'undefined') return n;
2552         n = n ? n.toString() : '';
2553         if(n.length > 0) {
2554
2555             if(num_grp_sep != '')
2556             {
2557                num_grp_sep_re = new RegExp('\\'+num_grp_sep, 'g');
2558                    n = n.replace(num_grp_sep_re, '');
2559             }
2560
2561                 n = n.replace(dec_sep, '.');
2562
2563         if(typeof CurrencySymbols != 'undefined') {
2564             // Need to strip out the currency symbols from the start.
2565             for ( var idx in CurrencySymbols ) {
2566                 n = n.replace(CurrencySymbols[idx], '');
2567             }
2568         }
2569                 return n;
2570         }
2571         return '';
2572 }
2573
2574 // round parameter can be negative for decimal, precision has to be postive
2575 function formatNumber(n, num_grp_sep, dec_sep, round, precision) {
2576   if(typeof num_grp_sep == 'undefined' || typeof dec_sep == 'undefined') return n;
2577   n = n ? n.toString() : '';
2578   if(n.split) n = n.split('.');
2579   else return n;
2580
2581   if(n.length > 2) return n.join('.'); // that's not a num!
2582   // round
2583   if(typeof round != 'undefined') {
2584     if(round > 0 && n.length > 1) { // round to decimal
2585       n[1] = parseFloat('0.' + n[1]);
2586       n[1] = Math.round(n[1] * Math.pow(10, round)) / Math.pow(10, round);
2587       n[1] = n[1].toString().split('.')[1];
2588     }
2589     if(round <= 0) { // round to whole number
2590         n[0] = Math.round(parseInt(n[0],10) * Math.pow(10, round)) / Math.pow(10, round);
2591       n[1] = '';
2592     }
2593   }
2594
2595   if(typeof precision != 'undefined' && precision >= 0) {
2596     if(n.length > 1 && typeof n[1] != 'undefined') n[1] = n[1].substring(0, precision); // cut off precision
2597         else n[1] = '';
2598     if(n[1].length < precision) {
2599       for(var wp = n[1].length; wp < precision; wp++) n[1] += '0';
2600     }
2601   }
2602
2603   regex = /(\d+)(\d{3})/;
2604   while(num_grp_sep != '' && regex.test(n[0])) n[0] = n[0].toString().replace(regex, '$1' + num_grp_sep + '$2');
2605   return n[0] + (n.length > 1 && n[1] != '' ? dec_sep + n[1] : '');
2606 }
2607
2608 // --- begin ajax status class
2609 SUGAR.ajaxStatusClass = function() {};
2610 SUGAR.ajaxStatusClass.prototype.statusDiv = null;
2611 SUGAR.ajaxStatusClass.prototype.oldOnScroll = null;
2612 SUGAR.ajaxStatusClass.prototype.shown = false; // state of the status window
2613
2614 // reposition the status div, top and centered
2615 SUGAR.ajaxStatusClass.prototype.positionStatus = function() {
2616         //this.statusDiv.style.top = document.body.scrollTop + 8 + 'px';
2617         statusDivRegion = YAHOO.util.Dom.getRegion(this.statusDiv);
2618         statusDivWidth = statusDivRegion.right - statusDivRegion.left;
2619         this.statusDiv.style.left = YAHOO.util.Dom.getViewportWidth() / 2 - statusDivWidth / 2 + 'px';
2620 }
2621
2622 // private func, create the status div
2623 SUGAR.ajaxStatusClass.prototype.createStatus = function(text) {
2624         statusDiv = document.createElement('div');
2625         statusDiv.className = 'dataLabel';
2626         statusDiv.id = 'ajaxStatusDiv';
2627         document.body.appendChild(statusDiv);
2628         this.statusDiv = document.getElementById('ajaxStatusDiv');
2629 }
2630
2631 // public - show the status div with text
2632 SUGAR.ajaxStatusClass.prototype.showStatus = function(text) {
2633         if(!this.statusDiv) {
2634                 this.createStatus(text);
2635         }
2636         else {
2637                 this.statusDiv.style.display = '';
2638         }
2639         this.statusDiv.innerHTML = '&nbsp;<b>' + text + '</b>&nbsp;';
2640         this.positionStatus();
2641         if(!this.shown) {
2642                 this.shown = true;
2643                 this.statusDiv.style.display = '';
2644                 if(window.onscroll) this.oldOnScroll = window.onscroll; // save onScroll
2645                 window.onscroll = this.positionStatus;
2646         }
2647 }
2648
2649 // public - hide it
2650 SUGAR.ajaxStatusClass.prototype.hideStatus = function(text) {
2651         if(!this.shown) return;
2652         this.shown = false;
2653         if(this.oldOnScroll) window.onscroll = this.oldOnScroll;
2654         else window.onscroll = '';
2655         this.statusDiv.style.display = 'none';
2656 }
2657
2658 SUGAR.ajaxStatusClass.prototype.flashStatus = function(text, time){
2659         this.showStatus(text);
2660         window.setTimeout('ajaxStatus.hideStatus();', time);
2661 }
2662
2663
2664 var ajaxStatus = new SUGAR.ajaxStatusClass();
2665 // --- end ajax status class
2666
2667 /**
2668  * Unified Search Advanced - for global search
2669  */
2670 SUGAR.unifiedSearchAdvanced = function() {
2671         var usa_div;
2672         var usa_img;
2673         var usa_open;
2674         var usa_content;
2675         var anim_open;
2676         var anim_close;
2677
2678         return {
2679                 init: function() {
2680                         SUGAR.unifiedSearchAdvanced.usa_div = document.getElementById('unified_search_advanced_div');
2681                         SUGAR.unifiedSearchAdvanced.usa_img = document.getElementById('unified_search_advanced_img');
2682
2683                         if(!SUGAR.unifiedSearchAdvanced.usa_div || !SUGAR.unifiedSearchAdvanced.usa_img) return;
2684                         var attributes = { height: { to: 300 } };
2685             SUGAR.unifiedSearchAdvanced.anim_open = new YAHOO.util.Anim('unified_search_advanced_div', attributes );
2686                         SUGAR.unifiedSearchAdvanced.anim_open.duration = 0.75;
2687                         SUGAR.unifiedSearchAdvanced.anim_close = new YAHOO.util.Anim('unified_search_advanced_div', { height: {to: 0} } );
2688                         SUGAR.unifiedSearchAdvanced.anim_close.duration = 0.75;
2689                         //SUGAR.unifiedSearchAdvanced.anim_close.onComplete.subscribe(function() {SUGAR.unifiedSearchAdvanced.usa_div.style.display = 'none'});
2690
2691                         SUGAR.unifiedSearchAdvanced.usa_img._x = YAHOO.util.Dom.getX(SUGAR.unifiedSearchAdvanced.usa_img);
2692                         SUGAR.unifiedSearchAdvanced.usa_img._y = YAHOO.util.Dom.getY(SUGAR.unifiedSearchAdvanced.usa_img);
2693
2694
2695                         SUGAR.unifiedSearchAdvanced.usa_open = false;
2696                         SUGAR.unifiedSearchAdvanced.usa_content = null;
2697
2698                    YAHOO.util.Event.addListener('unified_search_advanced_img', 'click', SUGAR.unifiedSearchAdvanced.get_content);
2699                 },
2700
2701                 get_content: function(e)
2702                 {
2703                     query_string = trim(document.getElementById('query_string').value);
2704                     if(query_string != '')
2705                     {
2706                         window.location.href = 'index.php?module=Home&action=UnifiedSearch&query_string=' + query_string;
2707                     } else {
2708                         window.location.href = 'index.php?module=Home&action=UnifiedSearch&form_only=true';
2709                     }
2710             },
2711
2712                 animate: function(data) {
2713                         ajaxStatus.hideStatus();
2714
2715                         if(data) {
2716                                 SUGAR.unifiedSearchAdvanced.usa_content = data.responseText;
2717                                 SUGAR.unifiedSearchAdvanced.usa_div.innerHTML = SUGAR.unifiedSearchAdvanced.usa_content;
2718                         }
2719                         if(SUGAR.unifiedSearchAdvanced.usa_open) {
2720                                 document.UnifiedSearch.advanced.value = 'false';
2721                                 SUGAR.unifiedSearchAdvanced.anim_close.animate();
2722                         }
2723                         else {
2724                                 document.UnifiedSearch.advanced.value = 'true';
2725                                 SUGAR.unifiedSearchAdvanced.usa_div.style.display = '';
2726                                 YAHOO.util.Dom.setX(SUGAR.unifiedSearchAdvanced.usa_div, SUGAR.unifiedSearchAdvanced.usa_img._x - 90);
2727                                 YAHOO.util.Dom.setY(SUGAR.unifiedSearchAdvanced.usa_div, SUGAR.unifiedSearchAdvanced.usa_img._y + 15);
2728                                 SUGAR.unifiedSearchAdvanced.anim_open.animate();
2729                         }
2730                 SUGAR.unifiedSearchAdvanced.usa_open = !SUGAR.unifiedSearchAdvanced.usa_open;
2731
2732                         return false;
2733                 },
2734
2735                 checkUsaAdvanced: function() {
2736                         if(document.UnifiedSearch.advanced.value == 'true') {
2737                                 document.UnifiedSearchAdvanced.query_string.value = document.UnifiedSearch.query_string.value;
2738                                 document.UnifiedSearchAdvanced.submit();
2739                                 return false;
2740                         }
2741                         return true;
2742                 }
2743 };
2744 }();
2745 if(typeof YAHOO != 'undefined') YAHOO.util.Event.addListener(window, 'load', SUGAR.unifiedSearchAdvanced.init);
2746
2747
2748 SUGAR.ui = {
2749         /**
2750          * Toggles the header
2751          */
2752         toggleHeader : function() {
2753                 var h = document.getElementById('header');
2754
2755                 if(h != null) {
2756                         if(h != null) {
2757                                 if(h.style.display == 'none') {
2758                                         h.style.display = '';
2759                                 } else {
2760                                         h.style.display = 'none';
2761                                 }
2762                         }
2763                 } else {
2764                         alert(SUGAR.language.get("app_strings", "ERR_NO_HEADER_ID"));
2765                 }
2766         }
2767 };
2768
2769
2770 /**
2771  * General Sugar Utils
2772  */
2773 SUGAR.util = function () {
2774         var additionalDetailsCache;
2775         var additionalDetailsCalls;
2776         var additionalDetailsRpcCall;
2777
2778         return {
2779                 getAndRemove : function (el) {
2780                         if (YAHOO && YAHOO.util && YAHOO.util.Dom)
2781                                 el = YAHOO.util.Dom.get(el);
2782                         else if (typeof (el) == "string")
2783                                 el = document.getElementById(el);
2784                         if (el && el.parentNode)
2785                                 el.parentNode.removeChild(el);
2786
2787                         return el;
2788                 },
2789                 paramsToUrl : function (params) {
2790                         url = "";
2791                         for (i in params) {
2792                                 url += i + "=" + params[i] + "&";
2793                         }
2794                         return url;
2795                 },
2796             evalScript:function(text){
2797                         if (isSafari) {
2798                                 var waitUntilLoaded = function(){
2799                                         SUGAR.evalScript_waitCount--;
2800                                         if (SUGAR.evalScript_waitCount == 0) {
2801                       var headElem = document.getElementsByTagName('head')[0];
2802                       for ( var i = 0; i < SUGAR.evalScript_evalElem.length; i++) {
2803                         var tmpElem = document.createElement('script');
2804                         tmpElem.type = 'text/javascript';
2805                         tmpElem.text = SUGAR.evalScript_evalElem[i];
2806                         headElem.appendChild(tmpElem);
2807                       }
2808                                         }
2809                                 };
2810
2811                                 var tmpElem = document.createElement('div');
2812                                 tmpElem.innerHTML = text;
2813                                 var results = tmpElem.getElementsByTagName('script');
2814                                 if (results == null) {
2815                                         // No scripts found, bail out
2816                                         return;
2817                                 }
2818
2819                                 var headElem = document.getElementsByTagName('head')[0];
2820                                 var tmpElem = null;
2821                                 SUGAR.evalScript_waitCount = 0;
2822                                 SUGAR.evalScript_evalElem = new Array();
2823                                 for (var i = 0; i < results.length; i++) {
2824                                         if (typeof(results[i]) != 'object') {
2825                                                 continue;
2826                                         };
2827                                         tmpElem = document.createElement('script');
2828                                         tmpElem.type = 'text/javascript';
2829                                         if (results[i].src != null && results[i].src != '') {
2830                                                 tmpElem.src = results[i].src;
2831                                         } else {
2832                         // Need to defer execution of these scripts until the
2833                         // required javascript files are fully loaded
2834                         SUGAR.evalScript_evalElem[SUGAR.evalScript_evalElem.length] = results[i].text;
2835                         continue;
2836                                         }
2837                                         tmpElem.addEventListener('load', waitUntilLoaded);
2838                                         SUGAR.evalScript_waitCount++;
2839                                         headElem.appendChild(tmpElem);
2840                                 }
2841                 // Add some code to handle pages without any external scripts
2842                                 SUGAR.evalScript_waitCount++;
2843                 waitUntilLoaded();
2844
2845                                 // Don't try and process things the IE way
2846                                 return;
2847                         }
2848
2849                 var objRegex = /<\s*script([^>]*)>((.|\s|\v|\0)*?)<\s*\/script\s*>/igm;
2850                         var lastIndex = -1;
2851                         var result =  objRegex.exec(text);
2852             while(result && result.index > lastIndex){
2853                 lastIndex = result.index
2854                                 try{
2855                                         var script = document.createElement('script');
2856                         script.type= 'text/javascript';
2857                         if(result[1].indexOf("src=") > -1){
2858                                                 var srcRegex = /.*src=['"]([a-zA-Z0-9_\-\&\/\.\?=:-]*)['"].*/igm;
2859                                                 var srcResult =  result[1].replace(srcRegex, '$1');
2860                                                 script.src = srcResult;
2861                         }else{
2862                                 script.text = result[2];
2863                         }
2864                         document.body.appendChild(script);
2865                       }
2866                       catch(e) {
2867                       if(typeof(console) != "undefined" && typeof(console.log) == "function")
2868                       {
2869                           console.log("error adding script");
2870                           console.log(e);
2871                           console.log(result);
2872                       }
2873                   }
2874                   result =  objRegex.exec(text);
2875                         }
2876             },
2877                 /**
2878                  * Gets the sidebar object
2879                  * @return object pointer to the sidebar element
2880                  */
2881                 getLeftColObj: function() {
2882                         leftColObj = document.getElementById('leftCol');
2883                         while(leftColObj.nodeName != 'TABLE') {
2884                                 leftColObj = leftColObj.firstChild;
2885                         }
2886                         leftColTable = leftColObj;
2887                         leftColTd = leftColTable.getElementsByTagName('td')[0];
2888                         leftColTdRegion = YAHOO.util.Dom.getRegion(leftColTd);
2889                         leftColTd.style.width = (leftColTdRegion.right - leftColTdRegion.left) + 'px';
2890
2891                         return leftColTd;
2892                 },
2893                 /**
2894                  * Fills the shortcut menu placeholders w/ actual content
2895                  * Call this on load event
2896                  *
2897                  * @param shortcutContent Array array of content to fill in
2898                  */
2899                 fillShortcuts: function(e, shortcutContent) {
2900                         return ;
2901 /*
2902             // don't do this if leftCol isn't available
2903             if (document.getElementById('leftCol') == undefined) { return; }
2904
2905                 spans = document.getElementById('leftCol').getElementsByTagName('span');
2906                         hideCol = document.getElementById('HideMenu').getElementsByTagName('span');
2907                         w = spans.length + 1;
2908                         for(i in hideCol) {
2909                                 spans[w] = hideCol[i];
2910                                 w++;
2911                         }
2912                     for(je in shortcutContent) {
2913                         for(wp in spans) {
2914                                 if(typeof spans[wp].innerHTML != 'undefined' && spans[wp].innerHTML == ('wp_shortcut_fill_' + je)) {
2915                                         if(typeof spans[wp].parentNode.parentNode == 'object') {
2916                                                 if(typeof spans[wp].parentNode.parentNode.onclick != 'undefined') {
2917                                                         spans[wp].parentNode.parentNode.onclick = null;
2918                                                 }
2919                                                 // If the wp_shortcut span is contained by an A tag, replace the A with a DIV.
2920                                                 if(spans[wp].parentNode.tagName == 'A' && !isIE) {
2921                                                         var newDiv = document.createElement('DIV');
2922                                                         var parentAnchor = spans[wp].parentNode;
2923
2924                                                         spans[wp].parentNode.parentNode.style.display = 'none';
2925
2926                                                         // Copy styles over to the new container div
2927                                                         if(window.getComputedStyle) {
2928                                                                 var parentStyle = window.getComputedStyle(parentAnchor, '');
2929                                                                 for(var styleName in parentStyle) {
2930                                                                         if(typeof parentStyle[styleName] != 'function'
2931                                                                     && styleName != 'display'
2932                                                                     && styleName != 'borderWidth'
2933                                                                     && styleName != 'visibility') {
2934                                                                         try {
2935                                                                                         newDiv.style[styleName] = parentStyle[styleName];
2936                                                                                 } catch(e) {
2937                                                                                         // Catches .length and .parentRule, and others
2938                                                                                 }
2939                                                                         }
2940                                                                 }
2941                                                         }
2942
2943                                                         // Replace the A with the DIV
2944                                                         newDiv.appendChild(spans[wp]);
2945                                                         parentAnchor.parentNode.replaceChild(newDiv, parentAnchor);
2946
2947                                                         spans[wp].parentNode.parentNode.style.display = '';
2948                                                 }
2949                                         }
2950                                     spans[wp].innerHTML = shortcutContent[je]; // fill w/ content
2951                                     if(spans[wp].style) spans[wp].style.display = '';
2952                                 }
2953                         }
2954                         }*/
2955                 },
2956                 /**
2957                  * Make an AJAX request.
2958                  *
2959                  * @param       url                             string  resource to load
2960                  * @param       theDiv                  string  id of element to insert loaded data into
2961                  * @param       postForm                string  if set, a POST request will be made to resource specified by url using the form named by postForm
2962                  * @param       callback                string  name of function to invoke after HTTP response is recieved
2963                  * @param       callbackParam   any             parameter to pass to callback when invoked
2964                  * @param       appendMode              bool    if true, HTTP response will be appended to the contents of theDiv, or else contents will be overriten.
2965                  */
2966             retrieveAndFill: function(url, theDiv, postForm, callback, callbackParam, appendMode) {
2967                         if(typeof theDiv == 'string') {
2968                                 try {
2969                                         theDiv = document.getElementById(theDiv);
2970                                 }
2971                         catch(e) {
2972                                         return;
2973                                 }
2974                         }
2975
2976                         var success = function(data) {
2977                                 if (typeof theDiv != 'undefined' && theDiv != null)
2978                                 {
2979                                         try {
2980                                                 if (typeof appendMode != 'undefined' && appendMode)
2981                                                 {
2982                                                         theDiv.innerHTML += data.responseText;
2983                                                 }
2984                                                 else
2985                                                 {
2986                                                         theDiv.innerHTML = data.responseText;
2987                                                 }
2988                                         }
2989                                         catch (e) {
2990                                                 return;
2991                                         }
2992                                 }
2993                                 if (typeof callback != 'undefined' && callback != null) callback(callbackParam);
2994                         }
2995
2996                         if(typeof postForm == 'undefined' || postForm == null) {
2997                                 var cObj = YAHOO.util.Connect.asyncRequest('GET', url, {success: success, failure: success});
2998                         }
2999                         else {
3000                                 YAHOO.util.Connect.setForm(postForm);
3001                                 var cObj = YAHOO.util.Connect.asyncRequest('POST', url, {success: success, failure: success});
3002                         }
3003                 },
3004                 checkMaxLength: function() { // modified from http://www.quirksmode.org/dom/maxlength.html
3005                         var maxLength = this.getAttribute('maxlength');
3006                         var currentLength = this.value.length;
3007                         if (currentLength > maxLength) {
3008                                 this.value = this.value.substring(0, maxLength);
3009                         }
3010                         // not innerHTML
3011                 },
3012                 /**
3013                  * Adds maxlength attribute to textareas
3014                  */
3015                 setMaxLength: function() { // modified from http://www.quirksmode.org/dom/maxlength.html
3016                         var x = document.getElementsByTagName('textarea');
3017                         for (var i=0;i<x.length;i++) {
3018                                 if (x[i].getAttribute('maxlength')) {
3019                                         x[i].onkeyup = x[i].onchange = SUGAR.util.checkMaxLength;
3020                                         x[i].onkeyup();
3021                                 }
3022                         }
3023                 },
3024
3025                 /**
3026                  * Renders Query UI Help Dialog
3027                  */
3028                 showHelpTips: function(el,helpText,myPos,atPos) {
3029                                 if(myPos == undefined || myPos == "") {
3030                                         myPos = "left top";
3031                                 }
3032                                 if(atPos == undefined || atPos == "") {
3033                                         atPos = "right top";
3034                                 }
3035
3036                                         var $dialog = $('<div></div>')
3037                                         .html(helpText)
3038                                         .dialog({
3039                                                 autoOpen: false,
3040                                                 title: SUGAR.language.get('app_strings', 'LBL_HELP'),
3041                                                 position: {
3042                                                     my: myPos,
3043                                                     at: atPos,
3044                                                     of: $(el)
3045                                                 }
3046                                         });
3047
3048
3049                                         var width = $dialog.dialog( "option", "width" );
3050                                         var pos = $(el).offset();
3051                                         var ofWidth = $(el).width();
3052
3053                                         if((pos.left + ofWidth) - 40 < width) {
3054                                                 $dialog.dialog("option","position",{my: 'left top',at: 'right top',of: $(el)})  ;
3055                                         }
3056                                         $dialog.dialog('open');
3057                                         $(".ui-dialog").appendTo("#content");
3058
3059
3060                 },
3061                 getStaticAdditionalDetails: function(el, body, caption, show_buttons) {
3062                         if(typeof show_buttons == "undefined") {
3063                                 show_buttons = false;
3064                         }
3065
3066                         $(".ui-dialog").find(".open").dialog("close");
3067
3068                         var $dialog = $('<div class="open"></div>')
3069                         .html(body)
3070                         .dialog({
3071                                 autoOpen: false,
3072                                 title: caption,
3073                                 width: 300,
3074                                 position: {
3075                                     my: 'right top',
3076                                     at: 'left top',
3077                                     of: $(el)
3078                           }
3079                         });
3080
3081                         if(show_buttons) {
3082                                 $(".ui-dialog").find('.ui-dialog-titlebar-close').css("display","none");
3083                                 $(".ui-dialog").find('.ui-dialog-title').css("width","100%");
3084                         }
3085
3086
3087                         var width = $dialog.dialog( "option", "width" );
3088                         var pos = $(el).offset();
3089                         var ofWidth = $(el).width();
3090
3091                         if((pos.left + ofWidth) - 40 < width) {
3092                                 $dialog.dialog("option","position",{my: 'left top',at: 'right top',of: $(el)})  ;
3093                         }
3094
3095                         $dialog.dialog('open');
3096                         $(".ui-dialog").appendTo("#content");
3097
3098                 },
3099
3100                 closeStaticAdditionalDetails: function() {
3101                         $(".ui-dialog").find(".open").dialog("close");
3102                 },
3103                 /**
3104                  * Retrieves additional details dynamically
3105                  */
3106                 getAdditionalDetails: function(bean, id, spanId, show_buttons) {
3107                         if(typeof show_buttons == "undefined")
3108                                 show_buttons = false;
3109                                 var el = '#'+spanId;
3110                         go = function() {
3111                                 oReturn = function(body, caption, width, theme) {
3112
3113                                         $(".ui-dialog").find(".open").dialog("close");
3114
3115                                         var $dialog = $('<div class="open"></div>')
3116                                         .html(body)
3117                                         .dialog({
3118                                                 autoOpen: false,
3119                                                 title: caption,
3120                                                 width: 300,
3121                                                 position: {
3122                                                     my: 'right top',
3123                                                     at: 'left top',
3124                                                     of: $(el)
3125                                           }
3126                                         });
3127                                 if(show_buttons) {
3128                                         $(".ui-dialog").find('.ui-dialog-titlebar-close').css("display","none");
3129                                         $(".ui-dialog").find('.ui-dialog-title').css("width","100%");
3130                                 }
3131
3132                                         var width = $dialog.dialog( "option", "width" );
3133                                         var pos = $(el).offset();
3134                                         var ofWidth = $(el).width();
3135
3136                                         if((pos.left + ofWidth) - 40 < width) {
3137                                                 $dialog.dialog("option","position",{my: 'left top',at: 'right top',of: $(el)})  ;
3138                                         }
3139
3140                                         $dialog.dialog('open');
3141                                         $(".ui-dialog").appendTo("#content");
3142                                 }
3143
3144                                 success = function(data) {
3145                                         eval(data.responseText);
3146
3147                                         SUGAR.util.additionalDetailsCache[id] = new Array();
3148                                         SUGAR.util.additionalDetailsCache[id]['body'] = result['body'];
3149                                         SUGAR.util.additionalDetailsCache[id]['caption'] = result['caption'];
3150                                         SUGAR.util.additionalDetailsCache[id]['width'] = result['width'];
3151                                         SUGAR.util.additionalDetailsCache[id]['theme'] = result['theme'];
3152                                         ajaxStatus.hideStatus();
3153                                         return oReturn(SUGAR.util.additionalDetailsCache[id]['body'], SUGAR.util.additionalDetailsCache[id]['caption'], SUGAR.util.additionalDetailsCache[id]['width'], SUGAR.util.additionalDetailsCache[id]['theme']);
3154                                 }
3155
3156                                 if(typeof SUGAR.util.additionalDetailsCache[id] != 'undefined')
3157                                         return oReturn(SUGAR.util.additionalDetailsCache[id]['body'], SUGAR.util.additionalDetailsCache[id]['caption'], SUGAR.util.additionalDetailsCache[id]['width'], SUGAR.util.additionalDetailsCache[id]['theme']);
3158
3159                                 if(typeof SUGAR.util.additionalDetailsCalls[id] != 'undefined') // call already in progress
3160                                         return;
3161                                 ajaxStatus.showStatus(SUGAR.language.get('app_strings', 'LBL_LOADING'));
3162                                 url = 'index.php?to_pdf=1&module=Home&action=AdditionalDetailsRetrieve&bean=' + bean + '&id=' + id;
3163                                 if(show_buttons)
3164                                         url += '&show_buttons=true';
3165                                 SUGAR.util.additionalDetailsCalls[id] = YAHOO.util.Connect.asyncRequest('GET', url, {success: success, failure: success});
3166
3167                                 return false;
3168                         }
3169                         SUGAR.util.additionalDetailsRpcCall = window.setTimeout('go()', 250);
3170                 },
3171                 clearAdditionalDetailsCall: function() {
3172                         if(typeof SUGAR.util.additionalDetailsRpcCall == 'number') window.clearTimeout(SUGAR.util.additionalDetailsRpcCall);
3173                 },
3174                 /**
3175                  * A function that extends functionality from parent to child.
3176                  */
3177                 extend : function(subc, superc, overrides) {
3178                         subc.prototype = new superc;    // set the superclass
3179                         // overrides
3180                         if (overrides) {
3181                             for (var i in overrides)    subc.prototype[i] = overrides[i];
3182                         }
3183                 },
3184                 hrefURL : function(url) {
3185                         if(SUGAR.isIE) {
3186                                 // IE needs special treatment since otherwise it would not pass Referer
3187                                 var trampoline = document.createElement('a');
3188                                 trampoline.href = url;
3189                                 document.body.appendChild(trampoline);
3190                                 trampoline.click();
3191                                 document.body.removeChild(trampoline);
3192                         } else {
3193                                 document.location.href = url;
3194                         }
3195                 },
3196
3197                 openWindow : function(URL, windowName, windowFeatures) {
3198                         if(SUGAR.isIE) {
3199                                 // IE needs special treatment since otherwise it would not pass Referer
3200                                 win = window.open('', windowName, windowFeatures);
3201                                 var trampoline = document.createElement('a');
3202                                 trampoline.href = URL;
3203                                 trampoline.target = windowName;
3204                                 document.body.appendChild(trampoline);
3205                                 trampoline.click();
3206                                 document.body.removeChild(trampoline);
3207                         } else {
3208                                 win = window.open(URL, windowName, windowFeatures);
3209                         }
3210                         return win;
3211                 },
3212         //Reset the scroll on the window
3213         top : function() {
3214                         window.scroll(0,0);
3215                 },
3216
3217         //Based on YUI onAvailible, but will use any boolean function instead of an ID
3218         doWhen : function(condition, fn, params, scope)
3219         {
3220             this._doWhenStack.push({
3221                 check:condition,
3222                 fn:         fn,
3223                 obj:        params,
3224                 overrideContext:   scope
3225             });
3226
3227             this._doWhenretryCount = 50;
3228             this._startDoWhenInterval();
3229         },
3230
3231         _startDoWhenInterval : function(){
3232             if (!this._doWhenInterval) {
3233                 this._doWhenInterval = YAHOO.lang.later(50, this, this._doWhenCheck, null, true);
3234             }
3235         },
3236         _doWhenStack : [],
3237         _doWhenInterval : false,
3238         _doWhenCheck : function() {
3239                 if (this._doWhenStack.length === 0) {
3240                     this._doWhenretryCount = 0;
3241                     if (this._doWhenInterval) {
3242                         // clearInterval(this._interval);
3243                         this._doWhenInterval.cancel();
3244                         this._doWhenInterval = null;
3245                     }
3246                     return;
3247                 }
3248
3249                 if (this._doWhenLocked) {
3250                     return;
3251                 }
3252
3253                 if (SUGAR.isIE) {
3254                     // Hold off if DOMReady has not fired and check current
3255                     // readyState to protect against the IE operation aborted
3256                     // issue.
3257                     if (!YAHOO.util.Event.DOMReady) {
3258                         this._startDoWhenInterval();
3259                         return;
3260                     }
3261                 }
3262
3263                 this._doWhenLocked = true;
3264
3265
3266                 // keep trying until after the page is loaded.  We need to
3267                 // check the page load state prior to trying to bind the
3268                 // elements so that we can be certain all elements have been
3269                 // tested appropriately
3270                 var tryAgain = YAHOO.util.Event.DOMReady;
3271                 if (!tryAgain) {
3272                     tryAgain = (this._doWhenretryCount > 0 && this._doWhenStack.length > 0);
3273                 }
3274
3275                 // onAvailable
3276                 var notAvail = [];
3277
3278                 var executeItem = function (context, item) {
3279                     if (item.overrideContext) {
3280                         if (item.overrideContext === true) {
3281                             context = item.obj;
3282                         } else {
3283                             context = item.overrideContext;
3284                         }
3285                     }
3286                     item.fn.call(context, item.obj);
3287                 };
3288
3289                 var i, len, item, test;
3290
3291                 // onAvailable onContentReady
3292                 for (i=0, len=this._doWhenStack.length; i<len; i=i+1) {
3293                     item = this._doWhenStack[i];
3294                     if (item) {
3295                         test = item.check;
3296                         if ((typeof(test) == "string" && eval(test)) || (typeof(test) == "function" && test())) {
3297                             executeItem(this, item);
3298                             this._doWhenStack[i] = null;
3299                         }
3300                          else {
3301                             notAvail.push(item);
3302                         }
3303                     }
3304                 }
3305
3306                 this._doWhenretryCount--;
3307
3308                 if (tryAgain) {
3309                     for (i=this._doWhenStack.length-1; i>-1; i--) {
3310                         item = this._doWhenStack[i];
3311                         if (!item || !item.check) {
3312                             this._doWhenStack.splice(i, 1);
3313                         }
3314                     }
3315                     this._startDoWhenInterval();
3316                 } else {
3317                     if (this._doWhenInterval) {
3318                         // clearInterval(this._interval);
3319                         this._doWhenInterval.cancel();
3320                         this._doWhenInterval = null;
3321                     }
3322                 }
3323                 this._doWhenLocked = false;
3324             },
3325         buildAccessKeyLabels : function()
3326                 {
3327                     if (typeof(Y.env.ua) !== 'undefined'){
3328                         envStr = '';
3329                         browserOS = Y.env.ua['os'];
3330                         isIE = Y.env.ua['ie'];
3331                         isCR = Y.env.ua['chrome'];
3332                         isFF = Y.env.ua['gecko'];
3333                         isWK = Y.env.ua['webkit'];
3334                         isOP = Y.env.ua['opera'];
3335                         controlKey = '';
3336
3337                         //first determine the OS
3338                         if(browserOS=='macintosh'){
3339                             //we got a mac, lets use the mac specific commands while we check the browser
3340                             if(isIE){
3341                                 //IE on a Mac? Not possible, but let's assign alt anyways for completions sake
3342                                 controlKey = 'Alt+';
3343                             }else if(isWK){
3344                                 //Chrome or safari on a mac
3345                                 controlKey = 'Ctrl+Opt+';
3346                             }else if(isOP){
3347                                 //Opera on a mac
3348                                 controlKey = 'Shift+Esc: ';
3349                             }else{
3350                                 //default FF and everything else on a mac
3351                                 controlKey = 'Ctrl+';
3352                             }
3353                         }else{
3354                             //this is not a mac so let's use the windows/unix commands while we check the browser
3355                             if(isFF){
3356                                 //FF on windows/unix
3357                                 controlKey = 'Alt+Shift+';
3358                             }else if(isOP){
3359                                 //Opera on windows/unix
3360                                 controlKey = 'Shift+Esc: ';
3361                             }else {
3362                                 //this is the default for safari, IE and Chrome
3363                                 //if this is webkit and is NOT google, then we are most likely looking at Safari
3364                                 controlKey = 'Alt+';
3365                             }
3366
3367                         }
3368
3369                         //now lets retrieve all elements of type input
3370                         allButtons = document.getElementsByTagName('input');
3371                         //iterate through list and modify title if the accesskey is not empty
3372                         for(i=0;i<allButtons.length;i++){
3373                             if(allButtons[i].getAttribute('accesskey') && allButtons[i].getAttribute('type') && allButtons[i].getAttribute('type')=='button'){
3374                                 allButtons[i].setAttribute('title',allButtons[i].getAttribute('title')+' ['+controlKey+allButtons[i].getAttribute('accesskey')+']');
3375                             }
3376                         }
3377                         //now change the text in the help div
3378                         if(typeof(keyboardhelpText) =='string'){
3379                                 keyboardhelpText = keyboardhelpText.replace(/Alt\+/g,controlKey);
3380                         }
3381                     }// end if (typeof(Y.env.ua) !== 'undefined')
3382                 }//end buildAccessKeyLabels()
3383         };
3384 }(); // end util
3385 SUGAR.util.additionalDetailsCache = new Array();
3386 SUGAR.util.additionalDetailsCalls = new Array();
3387 if(typeof YAHOO != 'undefined') YAHOO.util.Event.addListener(window, 'load', SUGAR.util.setMaxLength); // allow textareas to obey maxlength attrib
3388
3389 SUGAR.savedViews = function() {
3390         var selectedOrderBy;
3391         var selectedSortOrder;
3392         var displayColumns;
3393         var hideTabs;
3394         var columnsMeta; // meta data for the display columns
3395
3396         return {
3397                 setChooser: function() {
3398
3399                         var displayColumnsDef = new Array();
3400                         var hideTabsDef = new Array();
3401
3402                     var left_td = document.getElementById('display_tabs_td');
3403                     if(typeof left_td == 'undefined' || left_td == null) return; // abort!
3404                     var right_td = document.getElementById('hide_tabs_td');
3405
3406                     var displayTabs = left_td.getElementsByTagName('select')[0];
3407                     var hideTabs = right_td.getElementsByTagName('select')[0];
3408
3409                         for(i = 0; i < displayTabs.options.length; i++) {
3410                                 displayColumnsDef.push(displayTabs.options[i].value);
3411                         }
3412
3413                         if(typeof hideTabs != 'undefined') {
3414                                 for(i = 0; i < hideTabs.options.length; i++) {
3415                                  hideTabsDef.push(hideTabs.options[i].value);
3416                                 }
3417                         }
3418                         if (!SUGAR.savedViews.clearColumns)
3419                                 document.getElementById('displayColumnsDef').value = displayColumnsDef.join('|');
3420                         document.getElementById('hideTabsDef').value = hideTabsDef.join('|');
3421                 },
3422
3423                 select: function(saved_search_select) {
3424                         for(var wp = 0; wp < document.search_form.saved_search_select.options.length; wp++) {
3425                                 if(typeof document.search_form.saved_search_select.options[wp].value != 'undefined' &&
3426                                         document.search_form.saved_search_select.options[wp].value == saved_search_select) {
3427                                                 document.search_form.saved_search_select.selectedIndex = wp;
3428                                                 document.search_form.ss_delete.style.display = '';
3429                                                 document.search_form.ss_update.style.display = '';
3430                                 }
3431                         }
3432                 },
3433                 saved_search_action: function(action, delete_lang) {
3434                         if(action == 'delete') {
3435                                 if(!confirm(delete_lang)) return;
3436                         }
3437                         if(action == 'save') {
3438                                 if(document.search_form.saved_search_name.value.replace(/^\s*|\s*$/g, '') == '') {
3439                                         alert(SUGAR.language.get('app_strings', 'LBL_SAVED_SEARCH_ERROR'));
3440                                         return;
3441                                 }
3442                         }
3443
3444                         // This check is needed for the Activities module (Calls/Meetings/Tasks).
3445                         if (document.search_form.saved_search_action)
3446                         {
3447                                 document.search_form.saved_search_action.value = action;
3448                                 document.search_form.search_module.value = document.search_form.module.value;
3449                                 document.search_form.module.value = 'SavedSearch';
3450                                 // Bug 31922 - Make sure to specify that we want to hit the index view here of
3451                                 // the SavedSearch module, since the ListView doesn't have the logic to save the
3452                                 // search and redirect back
3453                                 document.search_form.action.value = 'index';
3454                         }
3455                         SUGAR.ajaxUI.submitForm(document.search_form);
3456                 },
3457                 shortcut_select: function(selectBox, module) {
3458                         //build url
3459                         selecturl = 'index.php?module=SavedSearch&search_module=' + module + '&action=index&saved_search_select=' + selectBox.options[selectBox.selectedIndex].value
3460                         //add searchFormTab to url if it is available.  This determines what tab to render
3461                         if(typeof(document.getElementById('searchFormTab'))!='undefined'){
3462                                 selecturl = selecturl + '&searchFormTab=' + document.search_form.searchFormTab.value;
3463                         }
3464                         //add showSSDIV to url if it is available.  This determines whether saved search sub form should
3465                         //be rendered open or not
3466                         if(document.getElementById('showSSDIV') && typeof(document.getElementById('showSSDIV') !='undefined')){
3467                                 selecturl = selecturl + '&showSSDIV='+document.getElementById('showSSDIV').value;
3468                         }
3469                         //use created url to navigate
3470                         document.location.href = selecturl;
3471                 },
3472                 handleForm: function() {
3473                         SUGAR.tabChooser.movementCallback = function(left_side, right_side) {
3474                                 while(document.getElementById('orderBySelect').childNodes.length != 0) { // clear out order by options
3475                                         document.getElementById('orderBySelect').removeChild(document.getElementById('orderBySelect').lastChild);
3476                                 }
3477
3478                                 var selectedIndex = 0;
3479                                 var nodeCount = -1; // need this because the counter i also includes "undefined" nodes
3480                                                                         // which was breaking Calls and Meetings
3481
3482                                 for(i in left_side.childNodes) { // fill in order by options
3483                                         if(typeof left_side.childNodes[i].nodeName != 'undefined' &&
3484                                                 left_side.childNodes[i].nodeName.toLowerCase() == 'option' &&
3485                                                 typeof SUGAR.savedViews.columnsMeta[left_side.childNodes[i].value] != 'undefined' && // check if column is sortable
3486                                                 typeof SUGAR.savedViews.columnsMeta[left_side.childNodes[i].value]['sortable'] == 'undefined' &&
3487                                                 SUGAR.savedViews.columnsMeta[left_side.childNodes[i].value]['sortable'] != false) {
3488                                                         nodeCount++;
3489                                                         optionNode = document.createElement('option');
3490                                                         optionNode.value = left_side.childNodes[i].value;
3491                                                         optionNode.innerHTML = left_side.childNodes[i].innerHTML;
3492                                                         document.getElementById('orderBySelect').appendChild(optionNode);
3493                                                         if(optionNode.value == SUGAR.savedViews.selectedOrderBy)
3494                                                                 selectedIndex = nodeCount;
3495                                         }
3496                                 }
3497                                 // Firefox needs this to be set after all the option nodes are created.
3498                                 document.getElementById('orderBySelect').selectedIndex = selectedIndex;
3499                         };
3500                         SUGAR.tabChooser.movementCallback(document.getElementById('display_tabs_td').getElementsByTagName('select')[0]);
3501
3502                         // This check is needed for the Activities module (Calls/Meetings/Tasks).
3503                         if (document.search_form.orderBy)
3504                                 document.search_form.orderBy.options.value = SUGAR.savedViews.selectedOrderBy;
3505
3506                         // handle direction
3507                         if(SUGAR.savedViews.selectedSortOrder == 'DESC') document.getElementById('sort_order_desc_radio').checked = true;
3508                         else document.getElementById('sort_order_asc_radio').checked = true;
3509                 }
3510         };
3511 }();
3512
3513 SUGAR.searchForm = function() {
3514         var url;
3515         return {
3516                 // searchForm tab selector util
3517                 searchFormSelect: function(view, previousView) {
3518                         var module = view.split('|')[0];
3519                         var theView = view.split('|')[1];
3520                         // retrieve form
3521                         var handleDisplay = function() { // hide other divs
3522                                 document.search_form.searchFormTab.value = theView;
3523                                 patt = module+"(.*)SearchForm$";
3524                                 divId=document.search_form.getElementsByTagName('div');
3525                                 // Hide all the search forms and retrive the name of the previous search tab (useful for the first load because previousView is empty)
3526                                 for (i=0;i<divId.length;i++){
3527                                         if(divId[i].id.match(module)==module){
3528                                                 if(divId[i].id.match('SearchForm')=='SearchForm'){
3529                                 if(document.getElementById(divId[i].id).style.display == ''){
3530                                    previousTab=divId[i].id.match(patt)[1];
3531                                 }
3532                                 document.getElementById(divId[i].id).style.display = 'none';
3533                             }
3534                                         }
3535                                 }
3536                                 // show the good search form.
3537                                 document.getElementById(module + theView + 'SearchForm').style.display = '';
3538                 //if its not the first tab show there is a previous tab.
3539                 if(previousView) {
3540                      thepreviousView=previousView.split('|')[1];
3541                  }
3542                  else{
3543                      thepreviousView=previousTab;
3544                  }
3545                  thepreviousView=thepreviousView.replace(/_search/, "");
3546                  // Process to retrieve the completed field from one tab to an other.
3547                  for(num in document.search_form.elements) {
3548                      if(document.search_form.elements[num]) {
3549                          el = document.search_form.elements[num];
3550                          pattern="^(.*)_"+thepreviousView+"$";
3551                          if(typeof el.type != 'undefined' && typeof el.name != 'undefined' && el.name.match(pattern)) {
3552                              advanced_input_name = el.name.match(pattern)[1]; // strip
3553                              advanced_input_name = advanced_input_name+"_"+theView.replace(/_search/, "");
3554                              if(typeof document.search_form[advanced_input_name] != 'undefined')  // if advanced input of same name exists
3555                                  SUGAR.searchForm.copyElement(advanced_input_name, el);
3556                          }
3557                      }
3558                  }
3559                         }
3560
3561                         // if tab is not cached
3562                         if(document.getElementById(module + theView + 'SearchForm').innerHTML == '') {
3563                                 ajaxStatus.showStatus(SUGAR.language.get('app_strings', 'LBL_LOADING'));
3564                                 var success = function(data) {
3565                                         document.getElementById(module + theView + 'SearchForm').innerHTML = data.responseText;
3566
3567                                         SUGAR.util.evalScript(data.responseText);
3568                                         // pass script variables to global scope
3569                                         if(theView == 'saved_views') {
3570                                                 if(typeof columnsMeta != 'undefined') SUGAR.savedViews.columnsMeta = columnsMeta;
3571                                                 if(typeof selectedOrderBy != 'undefined') SUGAR.savedViews.selectedOrderBy = selectedOrderBy;
3572                                                 if(typeof selectedSortOrder != 'undefined') SUGAR.savedViews.selectedSortOrder = selectedSortOrder;
3573                                         }
3574
3575                                         handleDisplay();
3576                                         enableQS(true);
3577                                         ajaxStatus.hideStatus();
3578                                 }
3579                                 url =   'index.php?module=' + module + '&action=index&search_form_only=true&to_pdf=true&search_form_view=' + theView;
3580
3581                                 //check to see if tpl has been specified.  If so then pass location through url string
3582                                 var tpl ='';
3583                                 if(document.getElementById('search_tpl') !=null && typeof(document.getElementById('search_tpl')) != 'undefined'){
3584                                         tpl = document.getElementById('search_tpl').value;
3585                                         if(tpl != ''){url += '&search_tpl='+tpl;}
3586                                 }
3587
3588                                 if(theView == 'saved_views') // handle the tab chooser
3589                                         url += '&displayColumns=' + SUGAR.savedViews.displayColumns + '&hideTabs=' + SUGAR.savedViews.hideTabs + '&orderBy=' + SUGAR.savedViews.selectedOrderBy + '&sortOrder=' + SUGAR.savedViews.selectedSortOrder;
3590
3591                                 var cObj = YAHOO.util.Connect.asyncRequest('GET', url, {success: success, failure: success});
3592                         }
3593                         else { // that form already retrieved
3594                                 handleDisplay();
3595                         }
3596                 },
3597
3598                 // copies one input to another
3599                 copyElement: function(inputName, copyFromElement) {
3600                         switch(copyFromElement.type) {
3601                                 case 'select-one':
3602                                 case 'text':
3603                                         document.search_form[inputName].value = copyFromElement.value;
3604                                         break;
3605                         }
3606                 },
3607         // This function is here to clear the form, instead of "resubmitting it
3608                 clear_form: function(form, skipElementNames) {
3609             var elemList = form.elements;
3610             var elem;
3611             var elemType;
3612
3613             for( var i = 0; i < elemList.length ; i++ ) {
3614                 elem = elemList[i];
3615                 if ( typeof(elem.type) == 'undefined' ) {
3616                     continue;
3617                 }
3618
3619                 if ( typeof(elem.type) != 'undefined' && typeof(skipElementNames) != 'undefined'
3620                         && SUGAR.util.arrayIndexOf(skipElementNames, elem.name) != -1 )
3621                 {
3622                     continue;
3623                 }
3624
3625                 elemType = elem.type.toLowerCase();
3626
3627                 if ( elemType == 'text' || elemType == 'textarea' || elemType == 'password' ) {
3628                     elem.value = '';
3629                 }
3630                 else if ( elemType == 'select' || elemType == 'select-one' || elemType == 'select-multiple' ) {
3631                     // We have, what I hope, is a select box, time to unselect all options
3632                     var optionList = elem.options;
3633                     for ( var ii = 0 ; ii < optionList.length ; ii++ ) {
3634                         optionList[ii].selected = false;
3635                     }
3636                 }
3637                 else if ( elemType == 'radio' || elemType == 'checkbox' ) {
3638                     elem.checked = false;
3639                     elem.selected = false;
3640                 }
3641                 else if ( elemType == 'hidden' ) {
3642                     // We only want to reset the hidden values that link to the select boxes.
3643                     if ( ( elem.name.length > 3 && elem.name.substring(elem.name.length-3) == '_id' )
3644                          || ((elem.name.length > 9) && (elem.name.substring(elem.name.length - 9) == '_id_basic'))
3645                          || ( elem.name.length > 12 && elem.name.substring(elem.name.length-12) == '_id_advanced' ) ) {
3646                         elem.value = '';
3647                     }
3648                 }
3649             }
3650                         SUGAR.savedViews.clearColumns = true;
3651                 }
3652         };
3653 }();
3654 // Code for the column/tab chooser used on homepage and in admin section
3655 SUGAR.tabChooser = function () {
3656         var     object_refs = new Array();
3657         return {
3658                         /* Describe certain transfers as invalid */
3659                         frozenOptions: [],
3660
3661                         movementCallback: function(left_side, right_side) {},
3662                         orderCallback: function(left_side, right_side) {},
3663
3664                         freezeOptions: function(left_name, right_name, target) {
3665                                 if(!SUGAR.tabChooser.frozenOptions) { SUGAR.tabChooser.frozenOptions = []; }
3666                                 if(!SUGAR.tabChooser.frozenOptions[left_name]) { SUGAR.tabChooser.frozenOptions[left_name] = []; }
3667                                 if(!SUGAR.tabChooser.frozenOptions[left_name][right_name]) { SUGAR.tabChooser.frozenOptions[left_name][right_name] = []; }
3668                                 if(typeof target == 'array') {
3669                                         for(var i in target) {
3670                                                 SUGAR.tabChooser.frozenOptions[left_name][right_name][target[i]] = true;
3671                                         }
3672                                 } else {
3673                                         SUGAR.tabChooser.frozenOptions[left_name][right_name][target] = true;
3674                                 }
3675                         },
3676
3677                         buildSelectHTML: function(info) {
3678                                 var text = "<select";
3679
3680                         if(typeof (info['select']['size']) != 'undefined') {
3681                                 text +=" size=\""+ info['select']['size'] +"\"";
3682                         }
3683
3684                         if(typeof (info['select']['name']) != 'undefined') {
3685                                 text +=" name=\""+ info['select']['name'] +"\"";
3686                         }
3687
3688                         if(typeof (info['select']['style']) != 'undefined') {
3689                                 text +=" style=\""+ info['select']['style'] +"\"";
3690                         }
3691
3692                         if(typeof (info['select']['onchange']) != 'undefined') {
3693                                 text +=" onChange=\""+ info['select']['onchange'] +"\"";
3694                         }
3695
3696                         if(typeof (info['select']['multiple']) != 'undefined') {
3697                                 text +=" multiple";
3698                         }
3699                         text +=">";
3700
3701                         for(i=0; i<info['options'].length;i++) {
3702                                 option = info['options'][i];
3703                                 text += "<option value=\""+option['value']+"\" ";
3704                                 if ( typeof (option['selected']) != 'undefined' && option['selected']== true) {
3705                                         text += "SELECTED";
3706                                 }
3707                                 text += ">"+option['text']+"</option>";
3708                         }
3709                         text += "</select>";
3710                         return text;
3711                         },
3712
3713                         left_to_right: function(left_name, right_name, left_size, right_size) {
3714                                 SUGAR.savedViews.clearColumns = false;
3715                             var left_td = document.getElementById(left_name+'_td');
3716                             var right_td = document.getElementById(right_name+'_td');
3717
3718                             var display_columns_ref = left_td.getElementsByTagName('select')[0];
3719                             var hidden_columns_ref = right_td.getElementsByTagName('select')[0];
3720
3721                             var selected_left = new Array();
3722                             var notselected_left = new Array();
3723                             var notselected_right = new Array();
3724
3725                             var left_array = new Array();
3726
3727                             var frozen_options = SUGAR.tabChooser.frozenOptions;
3728                             frozen_options = frozen_options && frozen_options[left_name] && frozen_options[left_name][right_name]?frozen_options[left_name][right_name]:[];
3729
3730                                 // determine which options are selected in left
3731                             for (i=0; i < display_columns_ref.options.length; i++)
3732                             {
3733                                 if ( display_columns_ref.options[i].selected == true && !frozen_options[display_columns_ref.options[i].value])
3734                                 {
3735                                     selected_left[selected_left.length] = {text: display_columns_ref.options[i].text, value: display_columns_ref.options[i].value};
3736                                 }
3737                                 else
3738                                 {
3739                                     notselected_left[notselected_left.length] = {text: display_columns_ref.options[i].text, value: display_columns_ref.options[i].value};
3740                                 }
3741
3742                             }
3743
3744                             for (i=0; i < hidden_columns_ref.options.length; i++)
3745                             {
3746                                 notselected_right[notselected_right.length] = {text:hidden_columns_ref.options[i].text, value:hidden_columns_ref.options[i].value};
3747
3748                             }
3749
3750                             var left_select_html_info = new Object();
3751                             var left_options = new Array();
3752                             var left_select = new Object();
3753
3754                             left_select['name'] = left_name+'[]';
3755                             left_select['id'] = left_name;
3756                             left_select['size'] = left_size;
3757                             left_select['multiple'] = 'true';
3758
3759                             var right_select_html_info = new Object();
3760                             var right_options = new Array();
3761                             var right_select = new Object();
3762
3763                             right_select['name'] = right_name+'[]';
3764                             right_select['id'] = right_name;
3765                             right_select['size'] = right_size;
3766                             right_select['multiple'] = 'true';
3767
3768                             for (i = 0; i < notselected_right.length; i++) {
3769                                 right_options[right_options.length] = notselected_right[i];
3770                             }
3771
3772                             for (i = 0; i < selected_left.length; i++) {
3773                                 right_options[right_options.length] = selected_left[i];
3774                             }
3775                             for (i = 0; i < notselected_left.length; i++) {
3776                                 left_options[left_options.length] = notselected_left[i];
3777                             }
3778                             left_select_html_info['options'] = left_options;
3779                             left_select_html_info['select'] = left_select;
3780                             right_select_html_info['options'] = right_options;
3781                             right_select_html_info['select'] = right_select;
3782                             right_select_html_info['style'] = 'background: lightgrey';
3783
3784                             var left_html = this.buildSelectHTML(left_select_html_info);
3785                             var right_html = this.buildSelectHTML(right_select_html_info);
3786
3787                             left_td.innerHTML = left_html;
3788                             right_td.innerHTML = right_html;
3789
3790                                 object_refs[left_name] = left_td.getElementsByTagName('select')[0];
3791                                 object_refs[right_name] = right_td.getElementsByTagName('select')[0];
3792
3793                                 this.movementCallback(object_refs[left_name], object_refs[right_name]);
3794
3795                             return false;
3796                         },
3797
3798
3799                         right_to_left: function(left_name, right_name, left_size, right_size, max_left) {
3800                                 SUGAR.savedViews.clearColumns = false;
3801                             var left_td = document.getElementById(left_name+'_td');
3802                             var right_td = document.getElementById(right_name+'_td');
3803
3804                             var display_columns_ref = left_td.getElementsByTagName('select')[0];
3805                             var hidden_columns_ref = right_td.getElementsByTagName('select')[0];
3806
3807                             var selected_right = new Array();
3808                             var notselected_right = new Array();
3809                             var notselected_left = new Array();
3810
3811                             var frozen_options = SUGAR.tabChooser.frozenOptions;
3812                             frozen_options = SUGAR.tabChooser.frozenOptions && SUGAR.tabChooser.frozenOptions[right_name] && SUGAR.tabChooser.frozenOptions[right_name][left_name]?SUGAR.tabChooser.frozenOptions[right_name][left_name]:[];
3813
3814                             for (i=0; i < hidden_columns_ref.options.length; i++)
3815                             {
3816                                 if (hidden_columns_ref.options[i].selected == true && !frozen_options[hidden_columns_ref.options[i].value])
3817                                 {
3818                                     selected_right[selected_right.length] = {text:hidden_columns_ref.options[i].text, value:hidden_columns_ref.options[i].value};
3819                                 }
3820                                 else
3821                                 {
3822                                     notselected_right[notselected_right.length] = {text:hidden_columns_ref.options[i].text, value:hidden_columns_ref.options[i].value};
3823                                 }
3824
3825                             }
3826
3827                             if(max_left != '' && (display_columns_ref.length + selected_right.length) > max_left) {
3828                                 alert('Maximum of ' + max_left + ' columns can be displayed.');
3829                                         return;
3830                             }
3831
3832                             for (i=0; i < display_columns_ref.options.length; i++)
3833                             {
3834                                 notselected_left[notselected_left.length] = {text:display_columns_ref.options[i].text, value:display_columns_ref.options[i].value};
3835
3836                             }
3837
3838                             var left_select_html_info = new Object();
3839                             var left_options = new Array();
3840                             var left_select = new Object();
3841
3842                             left_select['name'] = left_name+'[]';
3843                             left_select['id'] = left_name;
3844                             left_select['multiple'] = 'true';
3845                             left_select['size'] = left_size;
3846
3847                             var right_select_html_info = new Object();
3848                             var right_options = new Array();
3849                             var right_select = new Object();
3850
3851                             right_select['name'] = right_name+ '[]';
3852                             right_select['id'] = right_name;
3853                             right_select['multiple'] = 'true';
3854                             right_select['size'] = right_size;
3855
3856                             for (i = 0; i < notselected_left.length; i++) {
3857                                 left_options[left_options.length] = notselected_left[i];
3858                             }
3859
3860                             for (i = 0; i < selected_right.length; i++) {
3861                                 left_options[left_options.length] = selected_right[i];
3862                             }
3863                             for (i = 0; i < notselected_right.length; i++) {
3864                                 right_options[right_options.length] = notselected_right[i];
3865                             }
3866                             left_select_html_info['options'] = left_options;
3867                             left_select_html_info['select'] = left_select;
3868                             right_select_html_info['options'] = right_options;
3869                             right_select_html_info['select'] = right_select;
3870                             right_select_html_info['style'] = 'background: lightgrey';
3871
3872                             var left_html = this.buildSelectHTML(left_select_html_info);
3873                             var right_html = this.buildSelectHTML(right_select_html_info);
3874
3875                             left_td.innerHTML = left_html;
3876                             right_td.innerHTML = right_html;
3877
3878                                 object_refs[left_name] = left_td.getElementsByTagName('select')[0];
3879                                 object_refs[right_name] = right_td.getElementsByTagName('select')[0];
3880
3881                                 this.movementCallback(object_refs[left_name], object_refs[right_name]);
3882
3883                             return false;
3884                         },
3885
3886                         up: function(name, left_name, right_name) {
3887                                 SUGAR.savedViews.clearColumns = false;
3888                             var left_td = document.getElementById(left_name+'_td');
3889                             var right_td = document.getElementById(right_name+'_td');
3890                             var td = document.getElementById(name+'_td');
3891                             var obj = td.getElementsByTagName('select')[0];
3892                             obj = (typeof obj == "string") ? document.getElementById(obj) : obj;
3893                             if (obj.tagName.toLowerCase() != "select" && obj.length < 2)
3894                                 return false;
3895                             var sel = new Array();
3896
3897                             for (i=0; i<obj.length; i++) {
3898                                 if (obj[i].selected == true) {
3899                                     sel[sel.length] = i;
3900                                 }
3901                             }
3902                             for (i=0; i < sel.length; i++) {
3903                                 if (sel[i] != 0 && !obj[sel[i]-1].selected) {
3904                                     var tmp = new Array(obj[sel[i]-1].text, obj[sel[i]-1].value);
3905                                     obj[sel[i]-1].text = obj[sel[i]].text;
3906                                     obj[sel[i]-1].value = obj[sel[i]].value;
3907                                     obj[sel[i]].text = tmp[0];
3908                                     obj[sel[i]].value = tmp[1];
3909                                     obj[sel[i]-1].selected = true;
3910                                     obj[sel[i]].selected = false;
3911                                 }
3912                             }
3913
3914                                 object_refs[left_name] = left_td.getElementsByTagName('select')[0];
3915                                 object_refs[right_name] = right_td.getElementsByTagName('select')[0];
3916
3917                                 this.orderCallback(object_refs[left_name], object_refs[right_name]);
3918
3919                             return false;
3920                         },
3921
3922                         down: function(name, left_name, right_name) {
3923                                 SUGAR.savedViews.clearColumns = false;
3924                                 var left_td = document.getElementById(left_name+'_td');
3925                             var right_td = document.getElementById(right_name+'_td');
3926                             var td = document.getElementById(name+'_td');
3927                             var obj = td.getElementsByTagName('select')[0];
3928                             if (obj.tagName.toLowerCase() != "select" && obj.length < 2)
3929                                 return false;
3930                             var sel = new Array();
3931                             for (i=obj.length-1; i>-1; i--) {
3932                                 if (obj[i].selected == true) {
3933                                     sel[sel.length] = i;
3934                                 }
3935                             }
3936                             for (i=0; i < sel.length; i++) {
3937                                 if (sel[i] != obj.length-1 && !obj[sel[i]+1].selected) {
3938                                     var tmp = new Array(obj[sel[i]+1].text, obj[sel[i]+1].value);
3939                                     obj[sel[i]+1].text = obj[sel[i]].text;
3940                                     obj[sel[i]+1].value = obj[sel[i]].value;
3941                                     obj[sel[i]].text = tmp[0];
3942                                     obj[sel[i]].value = tmp[1];
3943                                     obj[sel[i]+1].selected = true;
3944                                     obj[sel[i]].selected = false;
3945                                 }
3946                             }
3947
3948                                 object_refs[left_name] = left_td.getElementsByTagName('select')[0];
3949                                 object_refs[right_name] = right_td.getElementsByTagName('select')[0];
3950
3951                                 this.orderCallback(object_refs[left_name], object_refs[right_name]);
3952
3953                             return false;
3954                         }
3955                 };
3956 }(); // end tabChooser
3957
3958 SUGAR.language = function() {
3959     return {
3960         languages : new Array(),
3961
3962         setLanguage: function(module, data) {
3963            if (!SUGAR.language.languages) {
3964
3965            }
3966             SUGAR.language.languages[module] = data;
3967         },
3968
3969         get: function(module, str) {
3970             if(typeof SUGAR.language.languages[module] == 'undefined' || typeof SUGAR.language.languages[module][str] == 'undefined')
3971             {
3972                 return 'undefined';
3973             }
3974             return SUGAR.language.languages[module][str];
3975         },
3976
3977         translate: function(module, str)
3978         {
3979             text = this.get(module, str);
3980             return text != 'undefined' ? text : this.get('app_strings', str);
3981         }
3982     }
3983 }();
3984
3985 SUGAR.contextMenu = function() {
3986         return {
3987                 objects: new Object(),
3988                 objectTypes: new Object(),
3989                 /**
3990                  * Registers a new object for the context menu.
3991                  * objectType - name of the type
3992                  * id - element id
3993                  * metaData - metaData to pass to the action function
3994                  **/
3995                 registerObject: function(objectType, id, metaData) {
3996                         SUGAR.contextMenu.objects[id] = new Object();
3997             SUGAR.contextMenu.objects[id] = {'objectType' : objectType, 'metaData' : metaData};
3998                 },
3999                 /**
4000                  * Registers a new object type
4001                  * name - name of the type
4002                  * menuItems - array of menu items
4003                  **/
4004                 registerObjectType: function(name, menuItems) {
4005                         SUGAR.contextMenu.objectTypes[name] = new Object();
4006                         SUGAR.contextMenu.objectTypes[name] = {'menuItems' : menuItems, 'objects' : new Array()};
4007                 },
4008                 /**
4009                  * Determines which menu item was clicked
4010                  **/
4011                 getListItemFromEventTarget: function(p_oNode) {
4012             var oLI;
4013             if(p_oNode.tagName == "LI") {
4014                     oLI = p_oNode;
4015             }
4016             else {
4017                     do {
4018                         if(p_oNode.tagName == "LI") {
4019                             oLI = p_oNode;
4020                             break;
4021                         }
4022
4023                     } while((p_oNode = p_oNode.parentNode));
4024                 }
4025             return oLI;
4026          },
4027          /**
4028           * handles movement within context menu
4029           **/
4030          onContextMenuMove: function() {
4031             var oNode = this.contextEventTarget;
4032             var bDisabled = (oNode.tagName == "UL");
4033             var i = this.getItemGroups()[0].length - 1;
4034             do {
4035                 this.getItem(i).cfg.setProperty("disabled", bDisabled);
4036             }
4037             while(i--);
4038         },
4039         /**
4040          * handles clicks on a context menu ITEM
4041          **/
4042                 onContextMenuItemClick: function(p_sType, p_aArguments, p_oItem) {
4043             var oLI = SUGAR.contextMenu.getListItemFromEventTarget(this.parent.contextEventTarget);
4044             id = this.parent.contextEventTarget.parentNode.id; // id of the target
4045             funct = eval(SUGAR.contextMenu.objectTypes[SUGAR.contextMenu.objects[id]['objectType']]['menuItems'][this.index]['action']);
4046             funct(this.parent.contextEventTarget, SUGAR.contextMenu.objects[id]['metaData']);
4047                 },
4048                 /**
4049                  * Initializes all context menus registered
4050                  **/
4051                 init: function() {
4052                         for(var i in SUGAR.contextMenu.objects) { // make a variable called objects in objectTypes containg references to all triggers
4053                 if(typeof SUGAR.contextMenu.objectTypes[SUGAR.contextMenu.objects[i]['objectType']]['objects'] == 'undefined')
4054                     SUGAR.contextMenu.objectTypes[SUGAR.contextMenu.objects[i]['objectType']]['objects'] = new Array();
4055                                 SUGAR.contextMenu.objectTypes[SUGAR.contextMenu.objects[i]['objectType']]['objects'].push(document.getElementById(i));
4056                         }
4057             // register the menus
4058                         for(var i in SUGAR.contextMenu.objectTypes) {
4059                     var oContextMenu = new YAHOO.widget.ContextMenu(i, {'trigger': SUGAR.contextMenu.objectTypes[i]['objects']});
4060                                 var aMainMenuItems = SUGAR.contextMenu.objectTypes[i]['menuItems'];
4061                     var nMainMenuItems = aMainMenuItems.length;
4062                     var oMenuItem;
4063                     for(var j = 0; j < nMainMenuItems; j++) {
4064                         oMenuItem = new YAHOO.widget.ContextMenuItem(aMainMenuItems[j].text, { helptext: aMainMenuItems[j].helptext });
4065                         oMenuItem.clickEvent.subscribe(SUGAR.contextMenu.onContextMenuItemClick, oMenuItem, true);
4066                         oContextMenu.addItem(oMenuItem);
4067                     }
4068                     //  Add a "move" event handler to the context menu
4069                     oContextMenu.moveEvent.subscribe(SUGAR.contextMenu.onContextMenuMove, oContextMenu, true);
4070                     // Add a "keydown" event handler to the context menu
4071                     oContextMenu.keyDownEvent.subscribe(SUGAR.contextMenu.onContextMenuItemClick, oContextMenu, true);
4072                     // Render the context menu
4073                     oContextMenu.render(document.body);
4074                 }
4075                 }
4076         };
4077 }();
4078
4079 SUGAR.contextMenu.actions = function() {
4080         return {
4081                 /**
4082                  * redirects to a new note with the clicked on object as the target
4083                  **/
4084                 createNote: function(itemClicked, metaData) {
4085                         loc = 'index.php?module=Notes&action=EditView';
4086                         for(i in metaData) {
4087                                 if(i == 'notes_parent_type') loc += '&parent_type=' + metaData[i];
4088                                 else if(i != 'module' && i != 'parent_type') loc += '&' + i + '=' + metaData[i];
4089                         }
4090                         document.location = loc;
4091                 },
4092                 /**
4093                  * redirects to a new note with the clicked on object as the target
4094                  **/
4095                 scheduleMeeting: function(itemClicked, metaData) {
4096                         loc = 'index.php?module=Meetings&action=EditView';
4097                         for(i in metaData) {
4098                                 if(i != 'module') loc += '&' + i + '=' + metaData[i];
4099                         }
4100                         document.location = loc;
4101                 },
4102                 /**
4103                  * redirects to a new note with the clicked on object as the target
4104                  **/
4105                 scheduleCall: function(itemClicked, metaData) {
4106                         loc = 'index.php?module=Calls&action=EditView';
4107                         for(i in metaData) {
4108                                 if(i != 'module') loc += '&' + i + '=' + metaData[i];
4109                         }
4110                         document.location = loc;
4111                 },
4112                 /**
4113                  * redirects to a new contact with the clicked on object as the target
4114                  **/
4115                 createContact: function(itemClicked, metaData) {
4116                         loc = 'index.php?module=Contacts&action=EditView';
4117                         for(i in metaData) {
4118                                 if(i != 'module') loc += '&' + i + '=' + metaData[i];
4119                         }
4120                         document.location = loc;
4121                 },
4122                 /**
4123                  * redirects to a new task with the clicked on object as the target
4124                  **/
4125                 createTask: function(itemClicked, metaData) {
4126                         loc = 'index.php?module=Tasks&action=EditView';
4127                         for(i in metaData) {
4128                                 if(i != 'module') loc += '&' + i + '=' + metaData[i];
4129                         }
4130                         document.location = loc;
4131                 },
4132                 /**
4133                  * redirects to a new opportunity with the clicked on object as the target
4134                  **/
4135                 createOpportunity: function(itemClicked, metaData) {
4136                         loc = 'index.php?module=Opportunities&action=EditView';
4137                         for(i in metaData) {
4138                                 if(i != 'module') loc += '&' + i + '=' + metaData[i];
4139                         }
4140                         document.location = loc;
4141                 },
4142                 /**
4143                  * redirects to a new opportunity with the clicked on object as the target
4144                  **/
4145                 createCase: function(itemClicked, metaData) {
4146                         loc = 'index.php?module=Cases&action=EditView';
4147                         for(i in metaData) {
4148                                 if(i != 'module') loc += '&' + i + '=' + metaData[i];
4149                         }
4150                         document.location = loc;
4151                 },
4152                 /**
4153                  * handles add to favorites menu selection
4154                  **/
4155                 addToFavorites: function(itemClicked, metaData) {
4156                         success = function(data) {
4157                         }
4158                         var cObj = YAHOO.util.Connect.asyncRequest('GET', 'index.php?to_pdf=true&module=Home&action=AddToFavorites&target_id=' + metaData['id'] + '&target_module=' + metaData['module'], {success: success, failure: success});
4159
4160                 }
4161         };
4162 }();
4163 //if(typeof YAHOO != 'undefined') YAHOO.util.Event.addListener(window, 'load', SUGAR.contextMenu.init);
4164
4165 // initially from popup_parent_helper.js
4166 var popup_request_data;
4167 var close_popup;
4168
4169 function get_popup_request_data()
4170 {
4171         return YAHOO.lang.JSON.stringify(window.document.popup_request_data);
4172 }
4173
4174 function get_close_popup()
4175 {
4176         return window.document.close_popup;
4177 }
4178
4179 function open_popup(module_name, width, height, initial_filter, close_popup, hide_clear_button, popup_request_data, popup_mode, create, metadata)
4180 {
4181         if (typeof(popupCount) == "undefined" || popupCount == 0)
4182            popupCount = 1;
4183
4184         // set the variables that the popup will pull from
4185         window.document.popup_request_data = popup_request_data;
4186         window.document.close_popup = close_popup;
4187
4188         //globally changing width and height of standard pop up window from 600 x 400 to 800 x 800
4189         width = (width == 600) ? 800 : width;
4190         height = (height == 400) ? 800 : height;
4191
4192         // launch the popup
4193         URL = 'index.php?'
4194                 + 'module=' + module_name
4195                 + '&action=Popup';
4196
4197         if (initial_filter != '') {
4198                 URL += '&query=true' + initial_filter;
4199                 // Bug 41891 - Popup Window Name
4200                 popupName = initial_filter.replace(/[^a-z_0-9]+/ig, '_');
4201                 windowName = module_name + '_popup_window' + popupName;
4202         } else {
4203                 windowName = module_name + '_popup_window' + popupCount;
4204         }
4205         popupCount++;
4206
4207         if (hide_clear_button) {
4208                 URL += '&hide_clear_button=true';
4209         }
4210
4211         windowFeatures = 'width=' + width
4212                 + ',height=' + height
4213                 + ',resizable=1,scrollbars=1';
4214
4215         if (popup_mode == '' && popup_mode == 'undefined') {
4216                 popup_mode='single';
4217         }
4218         URL+='&mode='+popup_mode;
4219         if (create == '' && create == 'undefined') {
4220                 create = 'false';
4221         }
4222         URL+='&create='+create;
4223
4224         if (metadata != '' && metadata != 'undefined') {
4225                 URL+='&metadata='+metadata;
4226         }
4227
4228     // Bug #46842 : The relate field field_to_name_array fails to copy over custom fields 
4229     // post fields that should be populated from popup form
4230         if(popup_request_data.jsonObject) {
4231                 var request_data = popup_request_data.jsonObject;
4232         } else {
4233                 var request_data = popup_request_data;
4234         }
4235     var field_to_name_array_url = '';
4236     if (request_data && request_data.field_to_name_array != 'undefined') {        
4237         for(var key in request_data.field_to_name_array) {
4238             if ( key.toLowerCase() != 'id' ) {
4239                 field_to_name_array_url += '&field_to_name[]='+encodeURIComponent(key.toLowerCase());
4240             }
4241         }
4242     }
4243     if ( field_to_name_array_url ) {
4244         URL+=field_to_name_array_url;
4245     }
4246     
4247         win = SUGAR.util.openWindow(URL, windowName, windowFeatures);
4248
4249         if(window.focus)
4250         {
4251                 // put the focus on the popup if the browser supports the focus() method
4252                 win.focus();
4253         }
4254
4255         win.popupCount = popupCount;
4256
4257         return win;
4258 }
4259
4260 /**
4261  * The reply data must be a JSON array structured with the following information:
4262  *  1) form name to populate
4263  *  2) associative array of input names to values for populating the form
4264  */
4265 var from_popup_return  = false;
4266
4267 //Function replaces special HTML chars for usage in text boxes
4268 function replaceHTMLChars(value) {
4269         return value.replace(/&amp;/gi,'&').replace(/&lt;/gi,'<').replace(/&gt;/gi,'>').replace(/&#039;/gi,'\'').replace(/&quot;/gi,'"');
4270 }
4271
4272 function set_return_basic(popup_reply_data,filter)
4273 {
4274         var form_name = popup_reply_data.form_name;
4275         var name_to_value_array = popup_reply_data.name_to_value_array;
4276         for (var the_key in name_to_value_array)
4277         {
4278                 if(the_key == 'toJSON')
4279                 {
4280                         /* just ignore */
4281                 }
4282                 else if(the_key.match(filter))
4283                 {
4284                         var displayValue=replaceHTMLChars(name_to_value_array[the_key]);
4285                         // begin andopes change: support for enum fields (SELECT)
4286                         if(window.document.forms[form_name] && window.document.forms[form_name].elements[the_key]) {
4287                                 if(window.document.forms[form_name].elements[the_key].tagName == 'SELECT') {
4288                                         var selectField = window.document.forms[form_name].elements[the_key];
4289                                         for(var i = 0; i < selectField.options.length; i++) {
4290                                                 if(selectField.options[i].text == displayValue) {
4291                                                         selectField.options[i].selected = true;
4292                             SUGAR.util.callOnChangeListers(selectField);
4293                                                         break;
4294                                                 }
4295                                         }
4296                                 } else {
4297                                         window.document.forms[form_name].elements[the_key].value = displayValue;
4298                     SUGAR.util.callOnChangeListers(window.document.forms[form_name].elements[the_key]);
4299                                 }
4300                         }
4301                         // end andopes change: support for enum fields (SELECT)
4302                 }
4303         }
4304 }
4305
4306 function set_return(popup_reply_data)
4307 {
4308         from_popup_return = true;
4309         var form_name = popup_reply_data.form_name;
4310         var name_to_value_array = popup_reply_data.name_to_value_array;
4311         if(typeof name_to_value_array != 'undefined' && name_to_value_array['account_id'])
4312         {
4313                 var label_str = '';
4314                 var label_data_str = '';
4315                 var current_label_data_str = '';
4316                 var popupConfirm = popup_reply_data.popupConfirm;
4317                 for (var the_key in name_to_value_array)
4318                 {
4319                         if(the_key == 'toJSON')
4320                         {
4321                                 /* just ignore */
4322                         }
4323                         else
4324                         {
4325                                 var displayValue=replaceHTMLChars(name_to_value_array[the_key]);
4326                                 if(window.document.forms[form_name] && document.getElementById(the_key+'_label') && !the_key.match(/account/)) {
4327                     var data_label = document.getElementById(the_key+'_label').innerHTML.replace(/\n/gi,'').replace(/<\/?[^>]+(>|$)/g, "");
4328                                         label_str += data_label + ' \n';
4329                                         label_data_str += data_label  + ' ' + displayValue + '\n';
4330                                         if(window.document.forms[form_name].elements[the_key]) {
4331                                                 current_label_data_str += data_label + ' ' + window.document.forms[form_name].elements[the_key].value +'\n';
4332                                         }
4333                                 }
4334                         }
4335                 }
4336
4337         if(label_data_str != label_str && current_label_data_str != label_str){
4338                 // Bug 48726 Start
4339                 if (typeof popupConfirm != 'undefined')
4340                 {
4341                         if (popupConfirm > -1) {
4342                                 set_return_basic(popup_reply_data,/\S/);
4343                         } else {
4344                                 set_return_basic(popup_reply_data,/account/);
4345                         }
4346                 }
4347                 // Bug 48726 End
4348                 else if(confirm(SUGAR.language.get('app_strings', 'NTC_OVERWRITE_ADDRESS_PHONE_CONFIRM') + '\n\n' + label_data_str))
4349                         {
4350                         set_return_basic(popup_reply_data,/\S/);
4351                         }
4352                 else
4353                         {
4354                         set_return_basic(popup_reply_data,/account/);
4355                         }
4356                 }else if(label_data_str != label_str && current_label_data_str == label_str){
4357                         set_return_basic(popup_reply_data,/\S/);
4358                 }else if(label_data_str == label_str){
4359                         set_return_basic(popup_reply_data,/account/);
4360                 }
4361         }else{
4362                 set_return_basic(popup_reply_data,/\S/);
4363         }
4364 }
4365
4366 function set_return_lead_conv(popup_reply_data) {
4367     set_return(popup_reply_data);
4368     if (document.getElementById('lead_conv_ac_op_sel') && typeof onBlurKeyUpHandler=='function') {
4369         onBlurKeyUpHandler();
4370     }
4371 }
4372
4373 function set_return_and_save(popup_reply_data)
4374 {
4375         var form_name = popup_reply_data.form_name;
4376         var name_to_value_array = popup_reply_data.name_to_value_array;
4377
4378         for (var the_key in name_to_value_array)
4379         {
4380                 if(the_key == 'toJSON')
4381                 {
4382                         /* just ignore */
4383                 }
4384                 else
4385                 {
4386                         window.document.forms[form_name].elements[the_key].value = name_to_value_array[the_key];
4387                 }
4388         }
4389
4390         window.document.forms[form_name].return_module.value = window.document.forms[form_name].module.value;
4391         window.document.forms[form_name].return_action.value = 'DetailView';
4392         window.document.forms[form_name].return_id.value = window.document.forms[form_name].record.value;
4393         window.document.forms[form_name].action.value = 'Save';
4394         window.document.forms[form_name].submit();
4395 }
4396
4397 /**
4398  * This is a helper function to construct the initial filter that can be
4399  * passed into the open_popup() function.  It assumes that there is an
4400  * account_id and account_name field in the given form_name to use to
4401  * construct the intial filter string.
4402  */
4403 function get_initial_filter_by_account(form_name)
4404 {
4405         var account_id = window.document.forms[form_name].account_id.value;
4406         var account_name = escape(window.document.forms[form_name].account_name.value);
4407         var initial_filter = "&account_id=" + account_id + "&account_name=" + account_name;
4408
4409         return initial_filter;
4410 }
4411 // end code from popup_parent_helper.js
4412
4413 // begin code for address copy
4414 /**
4415  * This is a function used by the Address widget that will fill
4416  * in the given array fields using the fromKey and toKey as a
4417  * prefix into the form objects HTML elements.
4418  *
4419  * @param form The HTML form object to parse
4420  * @param fromKey The prefix of elements to copy from
4421  * @param toKey The prefix of elements to copy into
4422  * @return boolean true if successful, false otherwise
4423  */
4424 function copyAddress(form, fromKey, toKey) {
4425
4426     var elems = new Array("address_street", "address_city", "address_state", "address_postalcode", "address_country");
4427     var checkbox = document.getElementById(toKey + "_checkbox");
4428
4429     if(typeof checkbox != "undefined") {
4430         if(!checkbox.checked) {
4431                     for(x in elems) {
4432                         t = toKey + "_" + elems[x];
4433                             document.getElementById(t).removeAttribute('readonly');
4434                     }
4435         } else {
4436                     for(x in elems) {
4437                             f = fromKey + "_" + elems[x];
4438                             t = toKey + "_" + elems[x];
4439
4440                             document.getElementById(t).value = document.getElementById(f).value;
4441                             document.getElementById(t).setAttribute('readonly', true);
4442                     }
4443             }
4444     }
4445         return true;
4446 }
4447 // end code for address copy
4448
4449 /**
4450  * This function is used in Email Template Module.
4451  * It will check whether the template is used in Campaing->EmailMarketing.
4452  * If true, it will notify user.
4453  */
4454
4455 function check_deletable_EmailTemplate() {
4456         id = document.getElementsByName('record')[0].value;
4457         currentForm = document.getElementById('form');
4458         var call_back = {
4459                 success:function(r) {
4460                         if(r.responseText == 'true') {
4461                                 if(!confirm(SUGAR.language.get('app_strings','NTC_TEMPLATE_IS_USED'))) {
4462                                         return false;
4463                                 }
4464                         } else {
4465                                 if(!confirm(SUGAR.language.get('app_strings','NTC_DELETE_CONFIRMATION'))) {
4466                                         return false;
4467                                 }
4468                         }
4469                         currentForm.return_module.value='EmailTemplates';
4470                         currentForm.return_action.value='ListView';
4471                         currentForm.action.value='Delete';
4472                         currentForm.submit();
4473                 }
4474                 };
4475         url = "index.php?module=EmailTemplates&action=CheckDeletable&from=DetailView&to_pdf=1&record="+id;
4476         YAHOO.util.Connect.asyncRequest('POST',url, call_back,null);
4477 }
4478
4479 SUGAR.image = {
4480      remove_upload_imagefile : function(field_name) {
4481             var field=document.getElementById('remove_imagefile_' + field_name);
4482             field.value=1;
4483
4484             //enable the file upload button.
4485             var field=document.getElementById( field_name);
4486             field.style.display="";
4487
4488             //hide the image and remove button.
4489             var field=document.getElementById('img_' + field_name);
4490             field.style.display="none";
4491             var field=document.getElementById('bt_remove_' + field_name);
4492             field.style.display="none";
4493
4494             if(document.getElementById(field_name + '_duplicate')) {
4495                var field = document.getElementById(field_name + '_duplicate');
4496                field.value = "";
4497             }
4498     },
4499
4500     confirm_imagefile : function(field_name) {
4501             var field=document.getElementById(field_name);
4502             var filename=field.value;
4503             var fileExtension = filename.substring(filename.lastIndexOf(".")+1);
4504             fileExtension = fileExtension.toLowerCase();
4505             if (fileExtension == "jpg" || fileExtension == "jpeg"
4506                 || fileExtension == "gif" || fileExtension == "png" || fileExtension == "bmp"){
4507                     //image file
4508                 }
4509             else{
4510                 field.value=null;
4511                 alert(SUGAR.language.get('app_strings', 'LBL_UPLOAD_IMAGE_FILE_INVALID'));
4512             }
4513     },
4514
4515     lightbox : function(image)
4516         {
4517         if (typeof(SUGAR.image.lighboxWindow) == "undefined")
4518                         SUGAR.image.lighboxWindow = new YAHOO.widget.SimpleDialog('sugarImageViewer', {
4519                     type:'message',
4520                     modal:true,
4521                     id:'sugarMsgWindow',
4522                     close:true,
4523                     title:"Alert",
4524                     msg: "<img src='" + image + "'> </img>",
4525                     buttons: [ ]
4526                 });
4527                 SUGAR.image.lighboxWindow.setBody("<img src='" + image + "'> </img>");
4528                 SUGAR.image.lighboxWindow.render(document.body);
4529         SUGAR.image.lighboxWindow.show();
4530                 SUGAR.image.lighboxWindow.center()
4531     }
4532 }
4533
4534 SUGAR.append(SUGAR.util, {
4535     isTouchScreen: function() {
4536         // first check if we have forced use of the touch enhanced interface
4537         if (Get_Cookie("touchscreen") == '1') {
4538             return true;
4539         }
4540
4541         // next check if we should use the touch interface with our device
4542         if ((navigator.userAgent.match(/iPad/i) != null)) {
4543             return true;
4544         }
4545
4546         return false;
4547     },
4548
4549     isLoginPage: function(content) {
4550         //skip if this is packageManager screen
4551         if(SUGAR.util.isPackageManager()) {return false;}
4552         var loginPageStart = "<!DOCTYPE";
4553         if (content.substr(0, loginPageStart.length) == loginPageStart && content.indexOf("<html>") != -1  && content.indexOf("login_module") != -1) {
4554                 window.location.href = window.location.protocol + window.location.pathname;
4555                 return true;
4556         }
4557     },
4558
4559 isPackageManager: function(){
4560         if(typeof(document.the_form) !='undefined' && typeof(document.the_form.language_pack_escaped) !='undefined'){
4561                 return true;
4562         }else{return false;}
4563 },
4564
4565 ajaxCallInProgress: function(){
4566     var t = true;
4567     //First check if we are in a popup.
4568     if (typeof (send_back) != "function"){
4569         //If the page content is blank, it means we are probably still waiting on something
4570         var c = document.getElementById("content");
4571         if (!c) return true;
4572         t = YAHOO.lang.trim(SUGAR.util.innerText(c));
4573     }
4574     return SUGAR_callsInProgress != 0 || t == "";
4575 },
4576 //Firefox doesn't support innerText (textContent includes script content)
4577 innerText : function(el) {
4578     if (el.tagName == "SCRIPT")
4579         return "";
4580     if(typeof(el.innerText) == "string")
4581         return el.innerText;
4582     var t = "";
4583     for (var i in el.childNodes){
4584         var c = el.childNodes[i];
4585         if (typeof(c) != "object")
4586             continue;
4587         if (typeof(c.nodeName) == "string" && c.nodeName == "#text")
4588             t += c.nodeValue;
4589         else
4590             t += SUGAR.util.innerText(c);
4591     }
4592     return t;
4593 },
4594
4595 callOnChangeListers: function(field){
4596         var listeners = YAHOO.util.Event.getListeners(field, 'change');
4597         if (listeners != null) {
4598                 for (var i = 0; i < listeners.length; i++) {
4599                         var l = listeners[i];
4600                         l.fn.call(l.scope ? l.scope : this, l.obj);
4601                 }
4602         }
4603 },
4604
4605 closeActivityPanel: {
4606     show:function(module,id,new_status,viewType,parentContainerId){
4607         if (SUGAR.util.closeActivityPanel.panel)
4608                         SUGAR.util.closeActivityPanel.panel.destroy();
4609             var singleModule = SUGAR.language.get("app_list_strings", "moduleListSingular")[module];
4610             singleModule = typeof(singleModule != 'undefined') ? singleModule.toLowerCase() : '';
4611             var closeText =  SUGAR.language.get("app_strings", "LBL_CLOSE_ACTIVITY_CONFIRM").replace("#module#",singleModule);
4612         SUGAR.util.closeActivityPanel.panel =
4613             new YAHOO.widget.SimpleDialog("closeActivityDialog",
4614                      { width: "300px",
4615                        fixedcenter: true,
4616                        visible: false,
4617                        draggable: false,
4618                        close: true,
4619                        text: closeText,
4620                        constraintoviewport: true,
4621                        buttons: [ { text:SUGAR.language.get("app_strings", "LBL_EMAIL_OK"), handler:function(){
4622                            if (SUGAR.util.closeActivityPanel.panel)
4623                             SUGAR.util.closeActivityPanel.panel.hide();
4624
4625                         ajaxStatus.showStatus(SUGAR.language.get('app_strings', 'LBL_SAVING'));
4626                         var args = "action=save&id=" + id + "&record=" + id + "&status=" + new_status + "&module=" + module;
4627                         // 20110307 Frank Steegmans: Fix for bug 42361, Any field with a default configured in any activity will be set to this default when closed using the close dialog
4628                         // TODO: Take id out and regression test. Left id in for now to not create any other unexpected problems
4629                         //var args = "action=save&id=" + id + "&status=" + new_status + "&module=" + module;
4630                         var callback = {
4631                             success:function(o)
4632                             {
4633                                 // Bug 45792: Firefox seems to believe reloading a page after an ajax request means you are re-submitting a form and gives you the warning for it.
4634                                 // So instead, we reload from a timeout
4635                                                                 window.setTimeout("window.location.reload(true);",0);
4636                             },
4637                             argument:{'parentContainerId':parentContainerId}
4638                         };
4639
4640                         YAHOO.util.Connect.asyncRequest('POST', 'index.php', callback, args);
4641
4642                        }, isDefault:true },
4643                                   { text:SUGAR.language.get("app_strings", "LBL_EMAIL_CANCEL"),  handler:function(){SUGAR.util.closeActivityPanel.panel.hide(); }} ]
4644                      } );
4645
4646             SUGAR.util.closeActivityPanel.panel.setHeader(SUGAR.language.get("app_strings", "LBL_CLOSE_ACTIVITY_HEADER"));
4647         SUGAR.util.closeActivityPanel.panel.render(document.body);
4648         SUGAR.util.closeActivityPanel.panel.show();
4649     }
4650 },
4651
4652 setEmailPasswordDisplay: function(id, exists, formName) {
4653         link = document.getElementById(id+'_link');
4654         pwd = document.getElementById(id);
4655         if(!pwd || !link) return;
4656         if(exists) {
4657         pwd.style.display = 'none';
4658         link.style.display = '';
4659         if(typeof(formName) != 'undefined')
4660             removeFromValidate(formName, id);
4661         } else {
4662         pwd.style.display = '';
4663         link.style.display = 'none';
4664         }
4665 },
4666
4667 setEmailPasswordEdit: function(id) {
4668         link = document.getElementById(id+'_link');
4669         pwd = document.getElementById(id);
4670         if(!pwd || !link) return;
4671         pwd.style.display = '';
4672         link.style.display = 'none';
4673 },
4674
4675     /**
4676      * Compares a filename with a supplied array of allowed file extensions.
4677      * @param fileName string
4678      * @param allowedTypes array of allowed file extensions
4679      * @return bool
4680      */
4681     validateFileExt: function(fileName, allowedTypes) {
4682         var ext = fileName.split('.').pop().toLowerCase();
4683
4684         for (var i = allowedTypes.length; i >= 0; i--) {
4685             if (ext === allowedTypes[i]) {
4686                 return true;
4687             }
4688         }
4689
4690         return false;
4691     },
4692
4693     arrayIndexOf: function(arr, val, start) {
4694         if (typeof arr.indexOf == "function")
4695             return arr.indexOf(val, start);
4696         for (var i = (start || 0), j = arr.length; i < j; i++) {
4697             if (arr[i] === val) {
4698                 return i;
4699             }
4700         }
4701         return -1;
4702     }
4703 });
4704
4705 SUGAR.clearRelateField = function(form, name, id)
4706 {
4707     if (typeof form[name] == "object"){
4708         form[name].value = '';
4709         SUGAR.util.callOnChangeListers(form[name]);
4710     }
4711
4712     if (typeof form[id] == "object"){
4713         form[id].value = '';
4714         SUGAR.util.callOnChangeListers(form[id]);
4715     }
4716 };
4717 if(typeof(SUGAR.AutoComplete) == 'undefined') SUGAR.AutoComplete = {};
4718
4719 SUGAR.AutoComplete.getOptionsArray = function(options_index){
4720     var return_arr = [];
4721
4722     var opts = SUGAR.language.get('app_list_strings', options_index);
4723     if(typeof(opts) != 'undefined'){
4724         for(key in opts){
4725             // Since we are using auto complete, we excluse blank dropdown entries since they can just leave it blank
4726             if(key != '' && opts[key] != ''){
4727                 var item = [];
4728                 item['key'] = key;
4729                 item['text'] = opts[key];
4730                 return_arr.push(item);
4731             }
4732         }
4733     }
4734     return return_arr;
4735 }
4736
4737 if(typeof(SUGAR.MultiEnumAutoComplete) == 'undefined') SUGAR.MultiEnumAutoComplete = {};
4738
4739 SUGAR.MultiEnumAutoComplete.getMultiSelectKeysFromValues = function(options_index, val_string){
4740     var opts = SUGAR.language.get('app_list_strings', options_index);
4741     var selected_values = val_string.split(", ");
4742     // YUI AutoComplete adds a blank. We remove it automatically here
4743     if(selected_values.length > 0 && selected_values.indexOf('') == selected_values.length - 1){
4744         selected_values.pop();
4745     }
4746     var final_arr = new Array();
4747     for(idx in selected_values){
4748         for(o_idx in opts){
4749             if(selected_values[idx] == opts[o_idx]){
4750                 final_arr.push(o_idx);
4751             }
4752         }
4753     }
4754     return final_arr;
4755 }
4756
4757 SUGAR.MultiEnumAutoComplete.getMultiSelectValuesFromKeys = function(options_index, val_string){
4758     var opts = SUGAR.language.get('app_list_strings', options_index);
4759     val_string=val_string.replace(/^\^/,'').replace(/\^$/,'') //fixes bug where string starts or ends with ^
4760     var selected_values = val_string.split("^,^");
4761
4762     // YUI AutoComplete adds a blank. We remove it automatically here
4763     if(selected_values.length > 0 && selected_values.indexOf('') == selected_values.length - 1){
4764         selected_values.pop();
4765     }
4766
4767     var final_arr = new Array();
4768     for(idx in selected_values){
4769         for(o_idx in opts){
4770             if(selected_values[idx] == o_idx){
4771                 final_arr.push(opts[o_idx]);
4772             }
4773         }
4774     }
4775     return final_arr;
4776 }