Calendar=function(firstDayOfWeek,dateStr,onSelected,onClose,inputField){this.activeDiv=null;this.currentDateEl=null;this.getDateStatus=null;this.timeout=null;this.onSelected=onSelected||null;this.onClose=onClose||null;this.dragging=false;this.hidden=false;this.minYear=1970;this.maxYear=2050;this.dateFormat=Calendar._TT["DEF_DATE_FORMAT"];this.ttDateFormat=Calendar._TT["TT_DATE_FORMAT"];this.isPopup=true;this.weekNumbers=true;this.firstDayOfWeek=firstDayOfWeek;this.showsOtherMonths=false;this.dateStr=dateStr;this.ar_days=null;this.showsTime=false;this.time24=true;this.yearStep=2;this.table=null;this.element=null;this.tbody=null;this.firstdayname=null;this.monthsCombo=null;this.yearsCombo=null;this.hilitedMonth=null;this.activeMonth=null;this.hilitedYear=null;this.activeYear=null;this.dateClicked=false;this.inputField=inputField||null;if(typeof Calendar._SDN=="undefined"){if(typeof Calendar._SDN_len=="undefined")
Calendar._SDN_len=3;var ar=new Array();for(var i=8;i>0;){ar[--i]=Calendar._DN[i].substr(0,Calendar._SDN_len);}
Calendar._SDN=ar;if(typeof Calendar._SMN_len=="undefined")
Calendar._SMN_len=3;ar=new Array();for(var i=12;i>0;){ar[--i]=Calendar._MN[i].substr(0,Calendar._SMN_len);}
Calendar._SMN=ar;}};Calendar._C=null;if(typeof jscal_today!='undefined'){;Calendar.dateToday=jscal_today;}
Calendar.is_ie=(/msie/i.test(navigator.userAgent)&&!/opera/i.test(navigator.userAgent));Calendar.is_ie5=(Calendar.is_ie&&/msie 5\.0/i.test(navigator.userAgent));Calendar.is_opera=/opera/i.test(navigator.userAgent);Calendar.is_khtml=/Konqueror|Safari|KHTML/i.test(navigator.userAgent);Calendar.getAbsolutePos=function(el){var SL=0,ST=0;var is_div=/^div$/i.test(el.tagName);if(is_div&&el.scrollLeft)
SL=el.scrollLeft;if(is_div&&el.scrollTop)
ST=el.scrollTop;var r={x:el.offsetLeft-SL,y:el.offsetTop-ST};if(el.offsetParent){var tmp=this.getAbsolutePos(el.offsetParent);r.x+=tmp.x;r.y+=tmp.y;}
return r;};Calendar.isRelated=function(el,evt){var related=evt.relatedTarget;if(!related){var type=evt.type;if(type=="mouseover"){related=evt.fromElement;}else if(type=="mouseout"){related=evt.toElement;}}
while(related){if(related==el){return true;}
related=related.parentNode;}
return false;};Calendar.removeClass=function(el,className){if(!(el&&el.className)){return;}
var cls=el.className.split(" ");var ar=new Array();for(var i=cls.length;i>0;){if(cls[--i]!=className){ar[ar.length]=cls[i];}}
el.className=ar.join(" ");};Calendar.addClass=function(el,className){Calendar.removeClass(el,className);el.className+=" "+className;};Calendar.getElement=function(ev){if(Calendar.is_ie){return window.event.srcElement;}else{return ev.currentTarget;}};Calendar.getTargetElement=function(ev){if(Calendar.is_ie){return window.event.srcElement;}else{return ev.target;}};Calendar.stopEvent=function(ev){ev||(ev=window.event);if(Calendar.is_ie){ev.cancelBubble=true;ev.returnValue=false;}else{ev.preventDefault();ev.stopPropagation();}
return false;};Calendar.addEvent=function(el,evname,func){if(el.attachEvent){el.attachEvent("on"+evname,func);}else if(el.addEventListener){el.addEventListener(evname,func,true);}else{el["on"+evname]=func;}};Calendar.removeEvent=function(el,evname,func){if(el.detachEvent){el.detachEvent("on"+evname,func);}else if(el.removeEventListener){el.removeEventListener(evname,func,true);}else{el["on"+evname]=null;}};Calendar.createElement=function(type,parent){var el=null;if(document.createElementNS){el=document.createElementNS("http://www.w3.org/1999/xhtml",type);}else{el=document.createElement(type);}
if(typeof parent!="undefined"){parent.appendChild(el);}
return el;};Calendar._add_evs=function(el){with(Calendar){addEvent(el,"mouseover",dayMouseOver);addEvent(el,"mousedown",dayMouseDown);addEvent(el,"mouseout",dayMouseOut);if(is_ie){addEvent(el,"dblclick",dayMouseDblClick);el.setAttribute("unselectable",true);}}};Calendar.findMonth=function(el){if(typeof el.month!="undefined"){return el;}else if(typeof el.parentNode.month!="undefined"){return el.parentNode;}
return null;};Calendar.findYear=function(el){if(typeof el.year!="undefined"){return el;}else if(typeof el.parentNode.year!="undefined"){return el.parentNode;}
return null;};Calendar.showMonthsCombo=function(){var cal=Calendar._C;if(!cal){return false;}
var cal=cal;var cd=cal.activeDiv;var mc=cal.monthsCombo;if(cal.hilitedMonth){Calendar.removeClass(cal.hilitedMonth,"hilite");}
if(cal.activeMonth){Calendar.removeClass(cal.activeMonth,"active");}
var mon=cal.monthsCombo.getElementsByTagName("div")[cal.date.getMonth()];Calendar.addClass(mon,"active");cal.activeMonth=mon;var s=mc.style;s.display="block";if(cd.navtype<0)
s.left=cd.offsetLeft+"px";else{var mcw=mc.offsetWidth;if(typeof mcw=="undefined")
mcw=50;s.left=(cd.offsetLeft+cd.offsetWidth-mcw)+"px";}
s.top=(cd.offsetTop+cd.offsetHeight)+"px";};Calendar.showYearsCombo=function(fwd){var cal=Calendar._C;if(!cal){return false;}
var cal=cal;var cd=cal.activeDiv;var yc=cal.yearsCombo;if(cal.hilitedYear){Calendar.removeClass(cal.hilitedYear,"hilite");}
if(cal.activeYear){Calendar.removeClass(cal.activeYear,"active");}
cal.activeYear=null;var Y=cal.date.getFullYear()+(fwd?1:-1);var yr=yc.firstChild;var show=false;for(var i=12;i>0;--i){if(Y>=cal.minYear&&Y<=cal.maxYear){yr.firstChild.data=Y;yr.year=Y;yr.style.display="block";show=true;}else{yr.style.display="none";}
yr=yr.nextSibling;Y+=fwd?cal.yearStep:-cal.yearStep;}
if(show){var s=yc.style;s.display="block";if(cd.navtype<0)
s.left=cd.offsetLeft+"px";else{var ycw=yc.offsetWidth;if(typeof ycw=="undefined")
ycw=50;s.left=(cd.offsetLeft+cd.offsetWidth-ycw)+"px";}
s.top=(cd.offsetTop+cd.offsetHeight)+"px";}};Calendar.tableMouseUp=function(ev){var cal=Calendar._C;if(!cal){return false;}
if(cal.timeout){clearTimeout(cal.timeout);}
var el=cal.activeDiv;if(!el){return false;}
var target=Calendar.getTargetElement(ev);ev||(ev=window.event);Calendar.removeClass(el,"active");if(target==el||target.parentNode==el){Calendar.cellClick(el,ev);}
var mon=Calendar.findMonth(target);var date=null;if(mon){date=new Date(cal.date);if(mon.month!=date.getMonth()){date.setMonth(mon.month);cal.setDate(date);cal.dateClicked=false;if(!cal.updateOnCloseOnly)cal.callHandler();}}else{var year=Calendar.findYear(target);if(year){date=new Date(cal.date);if(year.year!=date.getFullYear()){date.setFullYear(year.year);cal.setDate(date);cal.dateClicked=false;if(!cal.updateOnCloseOnly)cal.callHandler();}}}
with(Calendar){removeEvent(document,"mouseup",tableMouseUp);removeEvent(document,"mouseover",tableMouseOver);removeEvent(document,"mousemove",tableMouseOver);cal._hideCombos();_C=null;return stopEvent(ev);}};Calendar.tableMouseOver=function(ev){var cal=Calendar._C;if(!cal){return;}
var el=cal.activeDiv;var target=Calendar.getTargetElement(ev);if(target==el||target.parentNode==el){Calendar.addClass(el,"hilite active");Calendar.addClass(el.parentNode,"rowhilite");}else{if(typeof el.navtype=="undefined"||(el.navtype!=50&&(el.navtype==0||Math.abs(el.navtype)>2)))
Calendar.removeClass(el,"active");Calendar.removeClass(el,"hilite");Calendar.removeClass(el.parentNode,"rowhilite");}
ev||(ev=window.event);if(el.navtype==50&&target!=el){var pos=Calendar.getAbsolutePos(el);var w=el.offsetWidth;var x=ev.clientX;var dx;var decrease=true;if(x>pos.x+w){dx=x-pos.x-w;decrease=false;}else
dx=pos.x-x;if(dx<0)dx=0;var range=el._range;var current=el._current;var count=Math.floor(dx/10)%range.length;for(var i=range.length;--i>=0;)
if(range[i]==current)
break;while(count-->0)
if(decrease){if(--i<0)
i=range.length-1;}else if(++i>=range.length)
i=0;var newval=range[i];el.firstChild.data=newval;cal.onUpdateTime();}
var mon=Calendar.findMonth(target);if(mon){if(mon.month!=cal.date.getMonth()){if(cal.hilitedMonth){Calendar.removeClass(cal.hilitedMonth,"hilite");}
Calendar.addClass(mon,"hilite");cal.hilitedMonth=mon;}else if(cal.hilitedMonth){Calendar.removeClass(cal.hilitedMonth,"hilite");}}else{if(cal.hilitedMonth){Calendar.removeClass(cal.hilitedMonth,"hilite");}
var year=Calendar.findYear(target);if(year){if(year.year!=cal.date.getFullYear()){if(cal.hilitedYear){Calendar.removeClass(cal.hilitedYear,"hilite");}
Calendar.addClass(year,"hilite");cal.hilitedYear=year;}else if(cal.hilitedYear){Calendar.removeClass(cal.hilitedYear,"hilite");}}else if(cal.hilitedYear){Calendar.removeClass(cal.hilitedYear,"hilite");}}
return Calendar.stopEvent(ev);};Calendar.tableMouseDown=function(ev){if(Calendar.getTargetElement(ev)==Calendar.getElement(ev)){return Calendar.stopEvent(ev);}};Calendar.calDragIt=function(ev){var cal=Calendar._C;if(!(cal&&cal.dragging)){return false;}
var posX;var posY;if(Calendar.is_ie){posY=window.event.clientY+(document.documentElement||document.body).scrollTop;posX=window.event.clientX+(document.documentElement||document.body).scrollLeft;}else{posX=ev.pageX;posY=ev.pageY;}
cal.hideShowCovered();var st=cal.element.style;st.left=(posX-cal.xOffs)+"px";st.top=(posY-cal.yOffs)+"px";return Calendar.stopEvent(ev);};Calendar.calDragEnd=function(ev){var cal=Calendar._C;if(!cal){return false;}
cal.dragging=false;with(Calendar){removeEvent(document,"mousemove",calDragIt);removeEvent(document,"mouseup",calDragEnd);tableMouseUp(ev);}
cal.hideShowCovered();};Calendar.dayMouseDown=function(ev){var el=Calendar.getElement(ev);if(el.disabled){return false;}
var cal=el.calendar;cal.activeDiv=el;Calendar._C=cal;if(el.navtype!=300)with(Calendar){if(el.navtype==50){el._current=el.firstChild.data;addEvent(document,"mousemove",tableMouseOver);}else
addEvent(document,Calendar.is_ie5?"mousemove":"mouseover",tableMouseOver);addClass(el,"hilite active");addEvent(document,"mouseup",tableMouseUp);}else if(cal.isPopup){cal._dragStart(ev);}
if(el.navtype==-1||el.navtype==1){if(cal.timeout)clearTimeout(cal.timeout);cal.timeout=setTimeout("Calendar.showMonthsCombo()",250);}else if(el.navtype==-2||el.navtype==2){if(cal.timeout)clearTimeout(cal.timeout);cal.timeout=setTimeout((el.navtype>0)?"Calendar.showYearsCombo(true)":"Calendar.showYearsCombo(false)",250);}else{cal.timeout=null;}
return Calendar.stopEvent(ev);};Calendar.dayMouseDblClick=function(ev){Calendar.cellClick(Calendar.getElement(ev),ev||window.event);if(Calendar.is_ie){document.selection.empty();}};Calendar.dayMouseOver=function(ev){var el=Calendar.getElement(ev);if(Calendar.isRelated(el,ev)||Calendar._C||el.disabled){return false;}
if(el.ttip){if(el.ttip.substr(0,1)=="_"){el.ttip=el.caldate.print(el.calendar.ttDateFormat)+el.ttip.substr(1);}
el.calendar.tooltips.firstChild.data=el.ttip;}
if(el.navtype!=300){Calendar.addClass(el,"hilite");if(el.caldate){Calendar.addClass(el.parentNode,"rowhilite");}}
return Calendar.stopEvent(ev);};Calendar.dayMouseOut=function(ev){with(Calendar){var el=getElement(ev);if(isRelated(el,ev)||_C||el.disabled){return false;}
removeClass(el,"hilite");if(el.caldate){removeClass(el.parentNode,"rowhilite");}
el.calendar.tooltips.firstChild.data=_TT["SEL_DATE"];return stopEvent(ev);}};Calendar.cellClick=function(el,ev){var cal=el.calendar;var closing=false;var newdate=false;var date=null;if(typeof el.navtype=="undefined"){Calendar.removeClass(cal.currentDateEl,"selected");Calendar.addClass(el,"selected");closing=(cal.currentDateEl==el);if(!closing){cal.currentDateEl=el;}
cal.date=new Date(el.caldate);date=cal.date;newdate=true;if(!(cal.dateClicked=!el.otherMonth))
cal._init(cal.firstDayOfWeek,date);}else{if(el.navtype==200){Calendar.removeClass(el,"hilite");cal.callCloseHandler();return;}
if(el.navtype==0){if(typeof Calendar.dateToday!='undefined')date=new Date(parseFloat(Calendar.dateToday));else date=new Date();}
else{date=new Date(cal.date);}
cal.dateClicked=false;var year=date.getFullYear();var mon=date.getMonth();function setMonth(m){var day=date.getDate();var max=date.getMonthDays(m);if(day>max){date.setDate(max);}
date.setMonth(m);};switch(el.navtype){case 400:Calendar.removeClass(el,"hilite");var text=Calendar._TT["ABOUT"];if(typeof text!="undefined"){text+=cal.showsTime?Calendar._TT["ABOUT_TIME"]:"";}else{text="Help and about box text is not translated into this language.\n"+"If you know this language and you feel generous please update\n"+"the corresponding file in \"lang\" subdir to match calendar-en.js\n"+"and send it back to <mishoo@infoiasi.ro> to get it into the distribution  ;-)\n\n"+"Thank you!\n"+"http://dynarch.com/mishoo/calendar.epl\n";}
alert(text);return;case-2:if(year>cal.minYear){date.setFullYear(year-1);}
break;case-1:if(mon>0){setMonth(mon-1);}else if(year-->cal.minYear){date.setFullYear(year);setMonth(11);}
break;case 1:if(mon<11){setMonth(mon+1);}else if(year<cal.maxYear){date.setFullYear(year+1);setMonth(0);}
break;case 2:if(year<cal.maxYear){date.setFullYear(year+1);}
break;case 100:cal.setFirstDayOfWeek(el.fdow);return;case 50:var range=el._range;var current=el.firstChild.data;for(var i=range.length;--i>=0;)
if(range[i]==current)
break;if(ev&&ev.shiftKey){if(--i<0)
i=range.length-1;}else if(++i>=range.length)
i=0;var newval=range[i];el.firstChild.data=newval;cal.onUpdateTime();return;case 0:if((typeof cal.getDateStatus=="function")&&cal.getDateStatus(date,date.getFullYear(),date.getMonth(),date.getDate())){return false;}
break;}
if(!date.equalsTo(cal.date)){cal.setDate(date);if(closing||!cal.updateOnCloseOnly)newdate=true;}}
if(newdate){cal.callHandler();}
if(closing){Calendar.removeClass(el,"hilite");cal.callCloseHandler();}};Calendar.prototype.create=function(_par){var parent=null;if(!_par){parent=document.getElementsByTagName("body")[0];this.isPopup=true;}else{parent=_par;this.isPopup=false;}
if(this.dateStr)this.date=new Date(this.dateStr)
else if(typeof Calendar.dateToday=='undefined')this.date=new Date();else this.date=new Date(Calendar.dateToday);var table=Calendar.createElement("table");this.table=table;table.cellSpacing=0;table.cellPadding=0;table.calendar=this;Calendar.addEvent(table,"mousedown",Calendar.tableMouseDown);var div=Calendar.createElement("div");this.element=div;div.className="calendar";if(this.isPopup){div.style.position="absolute";div.style.display="none";div.style.zIndex=20001;}
div.appendChild(table);var thead=Calendar.createElement("thead",table);var cell=null;var row=null;var cal=this;var hh=function(text,cs,navtype){cell=Calendar.createElement("td",row);cell.colSpan=cs;cell.className="button";if(navtype!=0&&Math.abs(navtype)<=2)
cell.className+=" nav";Calendar._add_evs(cell);cell.calendar=cal;cell.navtype=navtype;if(text.substr(0,1)!="&"){cell.appendChild(document.createTextNode(text));}
else{cell.innerHTML=text;}
return cell;};row=Calendar.createElement("tr",thead);var title_length=6;(this.isPopup)&&--title_length;(this.weekNumbers)&&++title_length;hh("?",1,400).ttip=Calendar._TT["INFO"];this.title=hh("",title_length,300);this.title.className="title";if(this.isPopup){this.title.ttip=Calendar._TT["DRAG_TO_MOVE"];this.title.style.cursor="move";hh("&#x00d7;",1,200).ttip=Calendar._TT["CLOSE"];}
row=Calendar.createElement("tr",thead);row.className="headrow";this._nav_py=hh("&#x00ab;",1,-2);this._nav_py.ttip=Calendar._TT["PREV_YEAR"];this._nav_pm=hh("&#x2039;",1,-1);this._nav_pm.ttip=Calendar._TT["PREV_MONTH"];this._nav_now=hh(Calendar._TT["TODAY"],this.weekNumbers?4:3,0);this._nav_now.ttip=Calendar._TT["GO_TODAY"];this._nav_nm=hh("&#x203a;",1,1);this._nav_nm.ttip=Calendar._TT["NEXT_MONTH"];this._nav_ny=hh("&#x00bb;",1,2);this._nav_ny.ttip=Calendar._TT["NEXT_YEAR"];row=Calendar.createElement("tr",thead);row.className="daynames";if(this.weekNumbers){cell=Calendar.createElement("td",row);cell.className="name wn";cell.appendChild(document.createTextNode(Calendar._TT["WK"]));}
for(var i=7;i>0;--i){cell=Calendar.createElement("td",row);cell.appendChild(document.createTextNode(""));if(!i){cell.navtype=100;cell.calendar=this;Calendar._add_evs(cell);}}
this.firstdayname=(this.weekNumbers)?row.firstChild.nextSibling:row.firstChild;this._displayWeekdays();var tbody=Calendar.createElement("tbody",table);this.tbody=tbody;for(i=6;i>0;--i){row=Calendar.createElement("tr",tbody);if(this.weekNumbers){cell=Calendar.createElement("td",row);cell.appendChild(document.createTextNode(""));}
for(var j=7;j>0;--j){cell=Calendar.createElement("td",row);cell.appendChild(document.createTextNode(""));cell.calendar=this;Calendar._add_evs(cell);}}
if(this.showsTime){row=Calendar.createElement("tr",tbody);row.className="time";cell=Calendar.createElement("td",row);cell.className="time";cell.colSpan=2;cell.innerHTML=Calendar._TT["TIME"]||"&nbsp;";cell=Calendar.createElement("td",row);cell.className="time";cell.colSpan=this.weekNumbers?4:3;(function(){function makeTimePart(className,init,range_start,range_end){var part=Calendar.createElement("span",cell);part.className=className;part.appendChild(document.createTextNode(init));part.calendar=cal;part.ttip=Calendar._TT["TIME_PART"];part.navtype=50;part._range=[];if(typeof range_start!="number")
part._range=range_start;else{for(var i=range_start;i<=range_end;++i){var txt;if(i<10&&range_end>=10)txt='0'+i;else txt=''+i;part._range[part._range.length]=txt;}}
Calendar._add_evs(part);return part;};var hrs=cal.date.getHours();var mins=cal.date.getMinutes();var t12=!cal.time24;var pm=(hrs>12);if(t12&&pm)hrs-=12;var H=makeTimePart("hour",hrs,t12?1:0,t12?12:23);var span=Calendar.createElement("span",cell);span.appendChild(document.createTextNode(":"));span.className="colon";var M=makeTimePart("minute",mins,0,59);var AP=null;cell=Calendar.createElement("td",row);cell.className="time";cell.colSpan=2;if(t12)
AP=makeTimePart("ampm",pm?"pm":"am",["am","pm"]);else
cell.innerHTML="&nbsp;";cal.onSetTime=function(){var hrs=this.date.getHours();var mins=this.date.getMinutes();var pm=(hrs>12);if(pm&&t12)hrs-=12;H.firstChild.data=(hrs<10)?("0"+hrs):hrs;M.firstChild.data=(mins<10)?("0"+mins):mins;if(t12)
AP.firstChild.data=pm?"pm":"am";};cal.onUpdateTime=function(){var date=this.date;var h=parseInt(H.firstChild.data,10);if(t12){if(/pm/i.test(AP.firstChild.data)&&h<12)
h+=12;else if(/am/i.test(AP.firstChild.data)&&h==12)
h=0;}
var d=date.getDate();var m=date.getMonth();var y=date.getFullYear();date.setHours(h);date.setMinutes(parseInt(M.firstChild.data,10));date.setFullYear(y);date.setMonth(m);date.setDate(d);this.dateClicked=false;this.callHandler();};})();}else{this.onSetTime=this.onUpdateTime=function(){};}
var tfoot=Calendar.createElement("tfoot",table);row=Calendar.createElement("tr",tfoot);row.className="footrow";cell=hh(Calendar._TT["SEL_DATE"],this.weekNumbers?8:7,300);cell.className="ttip";if(this.isPopup){cell.ttip=Calendar._TT["DRAG_TO_MOVE"];cell.style.cursor="move";}
this.tooltips=cell;div=Calendar.createElement("div",this.element);this.monthsCombo=div;div.className="combo";for(i=0;i<Calendar._MN.length;++i){var mn=Calendar.createElement("div");mn.className=Calendar.is_ie?"label-IEfix":"label";mn.month=i;mn.appendChild(document.createTextNode(Calendar._SMN[i]));div.appendChild(mn);}
div=Calendar.createElement("div",this.element);this.yearsCombo=div;div.className="combo";for(i=12;i>0;--i){var yr=Calendar.createElement("div");yr.className=Calendar.is_ie?"label-IEfix":"label";yr.appendChild(document.createTextNode(""));div.appendChild(yr);}
this._init(this.firstDayOfWeek,this.date);parent.appendChild(this.element);};Calendar._keyEvent=function(ev){if(!window.calendar){return false;}
(Calendar.is_ie)&&(ev=window.event);var cal=window.calendar;var act=(Calendar.is_ie||ev.type=="keypress");if(ev.ctrlKey){switch(ev.keyCode){case 37:act&&Calendar.cellClick(cal._nav_pm);break;case 38:act&&Calendar.cellClick(cal._nav_py);break;case 39:act&&Calendar.cellClick(cal._nav_nm);break;case 40:act&&Calendar.cellClick(cal._nav_ny);break;default:return false;}}else switch(ev.keyCode){case 32:Calendar.cellClick(cal._nav_now);break;case 27:act&&cal.callCloseHandler();break;case 37:case 38:case 39:case 40:if(act){var date=cal.date.getDate()-1;var el=cal.currentDateEl;var ne=null;var prev=(ev.keyCode==37)||(ev.keyCode==38);switch(ev.keyCode){case 37:(--date>=0)&&(ne=cal.ar_days[date]);break;case 38:date-=7;(date>=0)&&(ne=cal.ar_days[date]);break;case 39:(++date<cal.ar_days.length)&&(ne=cal.ar_days[date]);break;case 40:date+=7;(date<cal.ar_days.length)&&(ne=cal.ar_days[date]);break;}
if(!ne){if(prev){Calendar.cellClick(cal._nav_pm);}else{Calendar.cellClick(cal._nav_nm);}
date=(prev)?cal.date.getMonthDays():1;el=cal.currentDateEl;ne=cal.ar_days[date-1];}
Calendar.removeClass(el,"selected");Calendar.addClass(ne,"selected");cal.date=new Date(ne.caldate);cal.callHandler();cal.currentDateEl=ne;}
break;case 13:if(act){cal.callHandler();cal.hide();}
break;default:return false;}
return Calendar.stopEvent(ev);};Calendar.prototype._init=function(firstDayOfWeek,date){if(typeof Calendar.dateToday=='undefined')var today=new Date();else var today=new Date(parseFloat(Calendar.dateToday));this.table.style.visibility="hidden";var year=date.getFullYear();if(year<this.minYear){year=this.minYear;date.setFullYear(year);}else if(year>this.maxYear){year=this.maxYear;date.setFullYear(year);}
this.firstDayOfWeek=firstDayOfWeek;this.date=new Date(date);var month=date.getMonth();var mday=date.getDate();var no_days=date.getMonthDays();date.setDate(1);var day1=(date.getDay()-this.firstDayOfWeek)%7;if(day1<0)
day1+=7;date.setDate(-day1);date.setDate(date.getDate()+1);var row=this.tbody.firstChild;var MN=Calendar._SMN[month];var ar_days=new Array();var weekend=Calendar._TT["WEEKEND"];if(!weekend)weekend="0,6";for(var i=0;i<6;++i,row=row.nextSibling){var cell=row.firstChild;if(this.weekNumbers){cell.className="day wn";cell.firstChild.data=date.getWeekNumber();cell=cell.nextSibling;}
row.className="daysrow";var hasdays=false;for(var j=0;j<7;++j,cell=cell.nextSibling,date.setDate(date.getDate()+1)){var iday=date.getDate();var wday=date.getDay();cell.className="day";var current_month=(date.getMonth()==month);if(!current_month){if(this.showsOtherMonths){cell.className+=" othermonth";cell.otherMonth=true;}else{cell.className="emptycell";cell.innerHTML="&nbsp;";cell.disabled=true;continue;}}else{cell.otherMonth=false;hasdays=true;}
cell.disabled=false;cell.firstChild.data=iday;if(typeof this.getDateStatus=="function"){var status=this.getDateStatus(date,year,month,iday);if(status===true){cell.className+=" disabled";cell.disabled=true;}else{if(/disabled/i.test(status))
cell.disabled=true;cell.className+=" "+status;}}
if(!cell.disabled){ar_days[ar_days.length]=cell;cell.caldate=new Date(date);cell.ttip="_";if(current_month&&iday==mday){cell.className+=" selected";this.currentDateEl=cell;}
if(date.getFullYear()==today.getFullYear()&&date.getMonth()==today.getMonth()&&iday==today.getDate()){cell.className+=" today";cell.ttip+=Calendar._TT["PART_TODAY"];}
if(weekend.indexOf(wday.toString())!=-1){cell.className+=cell.otherMonth?" oweekend":" weekend";}}}
if(!(hasdays||this.showsOtherMonths))
row.className="emptyrow";}
this.ar_days=ar_days;this.title.firstChild.data=Calendar._MN[month]+", "+year;this.onSetTime();this.table.style.visibility="visible";};Calendar.prototype.setDate=function(date){if(!date.equalsTo(this.date)){this._init(this.firstDayOfWeek,date);}};Calendar.prototype.refresh=function(){this._init(this.firstDayOfWeek,this.date);};Calendar.prototype.setFirstDayOfWeek=function(firstDayOfWeek){this._init(firstDayOfWeek,this.date);this._displayWeekdays();};Calendar.prototype.setDateStatusHandler=Calendar.prototype.setDisabledHandler=function(unaryFunction){this.getDateStatus=unaryFunction;};Calendar.prototype.setRange=function(a,z){this.minYear=a;this.maxYear=z;};Calendar.prototype.callHandler=function(){if(this.onSelected){this.onSelected(this,this.date.print(this.dateFormat));}};Calendar.prototype.callCloseHandler=function(){if(this.onClose){this.onClose(this);}
this.hideShowCovered();};Calendar.prototype.destroy=function(){var el=this.element.parentNode;el.removeChild(this.element);Calendar._C=null;window.calendar=null;};Calendar.prototype.reparent=function(new_parent){var el=this.element;el.parentNode.removeChild(el);new_parent.appendChild(el);};Calendar._checkCalendar=function(ev){if(!window.calendar){return false;}
var el=Calendar.is_ie?Calendar.getElement(ev):Calendar.getTargetElement(ev);for(;el!=null&&el!=calendar.element;el=el.parentNode);if(el==null){window.calendar.callCloseHandler();return Calendar.stopEvent(ev);}};Calendar.prototype.show=function(){if(this.inputField!=null&&(!this.inputField.readOnly||this.enableReadOnly))
{var rows=this.table.getElementsByTagName("tr");for(var i=rows.length;i>0;){var row=rows[--i];Calendar.removeClass(row,"rowhilite");var cells=row.getElementsByTagName("td");for(var j=cells.length;j>0;){var cell=cells[--j];Calendar.removeClass(cell,"hilite");Calendar.removeClass(cell,"active");}}
this.element.style.display="block";this.hidden=false;if(this.isPopup){window.calendar=this;Calendar.addEvent(document,"keydown",Calendar._keyEvent);Calendar.addEvent(document,"keypress",Calendar._keyEvent);Calendar.addEvent(document,"mousedown",Calendar._checkCalendar);}
this.hideShowCovered();}};Calendar.prototype.hide=function(){if(this.isPopup){Calendar.removeEvent(document,"keydown",Calendar._keyEvent);Calendar.removeEvent(document,"keypress",Calendar._keyEvent);Calendar.removeEvent(document,"mousedown",Calendar._checkCalendar);}
this.element.style.display="none";this.hidden=true;this.hideShowCovered();};Calendar.prototype.showAt=function(x,y){var s=this.element.style;s.left=x+"px";s.top=y+"px";this.show();};Calendar.prototype.showAtElement=function(el,opts){var self=this;var p=Calendar.getAbsolutePos(el);if(!opts||typeof opts!="string"){this.showAt(p.x,p.y+el.offsetHeight);return true;}
function fixPosition(box){if(box.x<0)
box.x=0;if(box.y<0)
box.y=0;var cp=document.createElement("div");var s=cp.style;s.position="absolute";s.right=s.bottom=s.width=s.height="0px";document.body.appendChild(cp);var br=Calendar.getAbsolutePos(cp);document.body.removeChild(cp);if(Calendar.is_ie){br.y+=(document.documentElement||document.body).scrollTop;br.x+=(document.documentElement||document.body).scrollLeft;}else{br.y+=window.scrollY;br.x+=window.scrollX;}
var tmp=box.x+box.width-br.x;if(tmp>0)box.x-=tmp;tmp=box.y+box.height-br.y;if(tmp>0)box.y-=tmp;};this.element.style.display="block";Calendar.continuation_for_the_fucking_khtml_browser=function(){var w=self.element.offsetWidth;var h=self.element.offsetHeight;self.element.style.display="none";var valign=opts.substr(0,1);var halign="l";if(opts.length>1){halign=opts.substr(1,1);}
switch(valign){case"T":p.y-=h;break;case"B":p.y+=el.offsetHeight;break;case"C":p.y+=(el.offsetHeight-h)/2;break;case"t":p.y+=el.offsetHeight-h;break;case"b":break;}
switch(halign){case"L":p.x-=w;break;case"R":p.x+=el.offsetWidth;break;case"C":p.x+=(el.offsetWidth-w)/2;break;case"r":p.x+=el.offsetWidth-w;break;case"l":break;}
p.width=w;p.height=h+40;self.monthsCombo.style.display="none";fixPosition(p);self.showAt(p.x,p.y);};if(Calendar.is_khtml)
setTimeout("Calendar.continuation_for_the_fucking_khtml_browser()",10);else
Calendar.continuation_for_the_fucking_khtml_browser();};Calendar.prototype.setDateFormat=function(str){this.dateFormat=str;};Calendar.prototype.setTtDateFormat=function(str){this.ttDateFormat=str;};Calendar.prototype.parseDate=function(str,fmt){var y=0;var m=-1;var d=0;var a=str.split(/\W+/);if(!fmt){fmt=this.dateFormat;}
var b=fmt.match(/%./g);var i=0,j=0;var hr=0;var min=0;for(i=0;i<a.length;++i){if(!a[i])
continue;switch(b[i]){case"%d":case"%e":d=parseInt(a[i],10);break;case"%m":m=parseInt(a[i],10)-1;break;case"%Y":case"%y":y=parseInt(a[i],10);(y<100)&&(y+=(y>29)?1900:2000);break;case"%b":case"%B":for(j=0;j<12;++j){if(Calendar._MN[j].substr(0,a[i].length).toLowerCase()==a[i].toLowerCase()){m=j;break;}}
break;case"%H":case"%I":case"%k":case"%l":hr=parseInt(a[i],10);break;case"%P":case"%p":if(/pm/i.test(a[i])&&hr<12)
hr+=12;break;case"%M":min=parseInt(a[i],10);break;}}
if(y!=0&&m!=-1&&d!=0){this.setDate(new Date(y,m,d,hr,min,0));return;}
y=0;m=-1;d=0;for(i=0;i<a.length;++i){if(a[i].search(/[a-zA-Z]+/)!=-1){var t=-1;for(j=0;j<12;++j){if(Calendar._MN[j].substr(0,a[i].length).toLowerCase()==a[i].toLowerCase()){t=j;break;}}
if(t!=-1){if(m!=-1){d=m+1;}
m=t;}}else if(parseInt(a[i],10)<=12&&m==-1){m=a[i]-1;}else if(parseInt(a[i],10)>31&&y==0){y=parseInt(a[i],10);(y<100)&&(y+=(y>29)?1900:2000);}else if(d==0){d=a[i];}}
if(y==0){var today=new Date();y=today.getFullYear();}
if(m!=-1&&d!=0){this.setDate(new Date(y,m,d,hr,min,0));}};Calendar.prototype.hideShowCovered=function(){var self=this;Calendar.continuation_for_the_fucking_khtml_browser=function(){function getVisib(obj){var value=obj.style.visibility;if(!value){if(document.defaultView&&typeof(document.defaultView.getComputedStyle)=="function"){if(!Calendar.is_khtml)
value=document.defaultView.getComputedStyle(obj,"").getPropertyValue("visibility");else
value='visible';}else if(obj.currentStyle){value=obj.currentStyle.visibility;}else
value='';}
return value;};var tags=new Array("applet","iframe","select");var el=self.element;var p=Calendar.getAbsolutePos(el);var EX1=p.x;var EX2=el.offsetWidth+EX1;var EY1=p.y;var EY2=el.offsetHeight+EY1;for(var k=tags.length;k>0;){var ar=document.getElementsByTagName(tags[--k]);var cc=null;for(var i=ar.length;i>0;){cc=ar[--i];p=Calendar.getAbsolutePos(cc);var CX1=p.x;var CX2=cc.offsetWidth+CX1;var CY1=p.y;var CY2=cc.offsetHeight+CY1;if(self.hidden||(CX1>EX2)||(CX2<EX1)||(CY1>EY2)||(CY2<EY1)){if(!cc.__msh_save_visibility){cc.__msh_save_visibility=getVisib(cc);}
cc.style.visibility=cc.__msh_save_visibility;}else{if(!cc.__msh_save_visibility){cc.__msh_save_visibility=getVisib(cc);}
cc.style.visibility="hidden";}}}};if(Calendar.is_khtml)
setTimeout("Calendar.continuation_for_the_fucking_khtml_browser()",10);else
Calendar.continuation_for_the_fucking_khtml_browser();};Calendar.prototype._displayWeekdays=function(){var fdow=this.firstDayOfWeek;var cell=this.firstdayname;var weekend=Calendar._TT["WEEKEND"];if(!weekend)weekend="0,6";for(var i=0;i<7;++i){cell.className="day name";var realday=(i+fdow)%7;if(i){var lbl=Calendar._TT["DAY_FIRST"];if(!lbl)lbl="%s";cell.ttip=lbl.replace("%s",Calendar._DN[realday]);cell.navtype=100;cell.calendar=this;cell.fdow=realday;Calendar._add_evs(cell);}
if(weekend.indexOf(realday.toString())!=-1){Calendar.addClass(cell,"weekend");}
cell.firstChild.data=Calendar._SDN[(i+fdow)%7];cell=cell.nextSibling;}};Calendar.prototype._hideCombos=function(){this.monthsCombo.style.display="none";this.yearsCombo.style.display="none";};Calendar.prototype._dragStart=function(ev){if(this.dragging){return;}
this.dragging=true;var posX;var posY;if(Calendar.is_ie){posY=window.event.clientY+(document.documentElement||document.body).scrollTop;posX=window.event.clientX+(document.documentElement||document.body).scrollLeft;}else{posY=ev.clientY+window.scrollY;posX=ev.clientX+window.scrollX;}
var st=this.element.style;this.xOffs=posX-parseInt(st.left);this.yOffs=posY-parseInt(st.top);with(Calendar){addEvent(document,"mousemove",calDragIt);addEvent(document,"mouseup",calDragEnd);}};Date._MD=new Array(31,28,31,30,31,30,31,31,30,31,30,31);Date.SECOND=1000;Date.MINUTE=60*Date.SECOND;Date.HOUR=60*Date.MINUTE;Date.DAY=24*Date.HOUR;Date.WEEK=7*Date.DAY;Date.prototype.getMonthDays=function(month){var year=this.getFullYear();if(typeof month=="undefined"){month=this.getMonth();}
if(((0==(year%4))&&((0!=(year%100))||(0==(year%400))))&&month==1){return 29;}else{return Date._MD[month];}};Date.prototype.getDayOfYear=function(){var now=new Date(this.getFullYear(),this.getMonth(),this.getDate(),0,0,0);var then=new Date(this.getFullYear(),0,0,0,0,0);var time=now-then;return Math.floor(time/Date.DAY);};Date.prototype.getWeekNumber=function(){var d=new Date(this.getFullYear(),this.getMonth(),this.getDate(),0,0,0);var DoW=d.getDay();d.setDate(d.getDate()-(DoW+6)%7+3);var ms=d.valueOf();d.setMonth(0);d.setDate(4);return Math.round((ms-d.valueOf())/(7*864e5))+1;};Date.prototype.equalsTo=function(date){if(!date)return false;return((this.getFullYear()==date.getFullYear())&&(this.getMonth()==date.getMonth())&&(this.getDate()==date.getDate())&&(this.getHours()==date.getHours())&&(this.getMinutes()==date.getMinutes()));};Date.prototype.print=function(str){var m=this.getMonth();var d=this.getDate();var y=this.getFullYear();var wn=this.getWeekNumber();var w=this.getDay();var s={};var hr=this.getHours();var pm=(hr>=12);var ir=(pm)?(hr-12):hr;var dy=this.getDayOfYear();if(ir==0)
ir=12;var min=this.getMinutes();var sec=this.getSeconds();s["%a"]=Calendar._SDN[w];s["%A"]=Calendar._DN[w];s["%b"]=Calendar._SMN[m];s["%B"]=Calendar._MN[m];s["%C"]=1+Math.floor(y/100);s["%d"]=(d<10)?("0"+d):d;s["%e"]=d;s["%H"]=(hr<10)?("0"+hr):hr;s["%I"]=(ir<10)?("0"+ir):ir;s["%j"]=(dy<100)?((dy<10)?("00"+dy):("0"+dy)):dy;s["%k"]=hr;s["%l"]=ir;s["%m"]=(m<9)?("0"+(1+m)):(1+m);s["%M"]=(min<10)?("0"+min):min;s["%n"]="\n";s["%p"]=pm?"PM":"AM";s["%P"]=pm?"pm":"am";s["%s"]=Math.floor(this.getTime()/1000);s["%S"]=(sec<10)?("0"+sec):sec;s["%t"]="\t";s["%U"]=s["%W"]=s["%V"]=(wn<10)?("0"+wn):wn;s["%u"]=w+1;s["%w"]=w;s["%y"]=(''+y).substr(2,2);s["%Y"]=y;s["%%"]="%";var re=/%./g;var isSafari=navigator.userAgent.toLowerCase().indexOf("safari")!=-1;if(!Calendar.is_ie5&&!isSafari)
return str.replace(re,function(par){return s[par]||par;})
var a=str.match(re);for(var i=0;i<a.length;i++){var tmp=s[a[i]];if(tmp){re=new RegExp(a[i],'g');str=str.replace(re,tmp);}}
return str;};Date.prototype.__msh_oldSetFullYear=Date.prototype.setFullYear;Date.prototype.setFullYear=function(y){var d=new Date(this);d.__msh_oldSetFullYear(y);if(d.getMonth()!=this.getMonth())
this.setDate(28);this.__msh_oldSetFullYear(y);};window.calendar=null;Calendar._DN=new Array
("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday");Calendar._SDN=new Array
("Sun","Mon","Tue","Wed","Thu","Fri","Sat","Sun");Calendar._MN=new Array
("January","February","March","April","May","June","July","August","September","October","November","December");Calendar._SMN=new Array
("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");Calendar._TT={};Calendar._TT["INFO"]="About the calendar";Calendar._TT["ABOUT"]="DHTML Date/Time Selector\n"+"(c) dynarch.com 2002-2003\n"+"For latest version visit: http://dynarch.com/mishoo/calendar.epl\n"+"Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details."+"\n\n"+"Date selection:\n"+"- Use the \xab, \xbb buttons to select year\n"+"- Use the "+String.fromCharCode(0x2039)+", "+String.fromCharCode(0x203a)+" buttons to select month\n"+"- Hold mouse button on any of the above buttons for faster selection.";Calendar._TT["ABOUT_TIME"]="\n\n"+"Time selection:\n"+"- Click on any of the time parts to increase it\n"+"- or Shift-click to decrease it\n"+"- or click and drag for faster selection.";Calendar._TT["PREV_YEAR"]="Prev. year (hold for menu)";Calendar._TT["PREV_MONTH"]="Prev. month (hold for menu)";Calendar._TT["GO_TODAY"]="Go Today";Calendar._TT["NEXT_MONTH"]="Next month (hold for menu)";Calendar._TT["NEXT_YEAR"]="Next year (hold for menu)";Calendar._TT["SEL_DATE"]="Select date";Calendar._TT["DRAG_TO_MOVE"]="Drag to move";Calendar._TT["PART_TODAY"]=" (today)";Calendar._TT["DAY_FIRST"]="Display %s first";Calendar._TT["WEEKEND"]="0,6";Calendar._TT["CLOSE"]="Close";Calendar._TT["TODAY"]="Today";Calendar._TT["TIME_PART"]="(Shift-)Click or drag to change value";Calendar._TT["DEF_DATE_FORMAT"]="%Y-%m-%d";Calendar._TT["TT_DATE_FORMAT"]="%a, %b %e";Calendar._TT["WK"]="wk";Calendar._TT["TIME"]="Time:";Calendar.setup=function(params){function param_default(pname,def){if(typeof params[pname]=="undefined"){params[pname]=def;}};param_default("inputFieldObj",null);param_default("displayAreaObj",null);param_default("buttonObj",null);param_default("inputField",null);param_default("displayArea",null);param_default("button",null);param_default("eventName","click");param_default("ifFormat","%Y/%m/%d");param_default("daFormat","%Y/%m/%d");param_default("singleClick",true);param_default("disableFunc",null);param_default("dateStatusFunc",params["disableFunc"]);param_default("firstDay",week_start_day);param_default("align","Br");param_default("range",[1900,2999]);param_default("weekNumbers",true);param_default("flat",null);param_default("flatCallback",null);param_default("onSelect",null);param_default("onClose",null);param_default("onOpen",null);param_default("onUpdate",null);param_default("date",null);param_default("showsTime",false);param_default("timeFormat","24");param_default("electric",true);param_default("step",2);param_default("position",null);param_default("cache",false);param_default("showOthers",false);param_default("updateOnCloseOnly",false);param_default("enableReadOnly",false);var tmp=["inputField","displayArea","button"];for(var i in tmp)
{if(params[tmp[i]+'Obj']==null&&typeof params[tmp[i]]=="string")
{params[tmp[i]]=document.getElementById(params[tmp[i]]);}
else
{params[tmp[i]]=params[tmp[i]+'Obj'];}}
if(!(params.flat||params.inputField||params.displayArea||params.button)){return false;}
function onSelect(cal){var p=cal.params;var update=(cal.dateClicked||p.electric);if(update&&p.flat){if(typeof p.flatCallback=="function")
p.flatCallback(cal);else
alert("No flatCallback given -- doing nothing.");return false;}
if(update&&p.inputField){p.inputField.value=cal.date.print(p.ifFormat);if(typeof p.inputField.onchange=="function")
p.inputField.onchange();}
if(update&&p.displayArea)
p.displayArea.innerHTML=cal.date.print(p.daFormat);if(update&&p.singleClick&&cal.dateClicked)
cal.callCloseHandler();if(update&&typeof p.onUpdate=="function")
p.onUpdate(cal);};if(params.flat!=null){if(typeof params.flat=="string")
params.flat=document.getElementById(params.flat);if(!params.flat){alert("Calendar.setup:\n  Flat specified but can't find parent.");return false;}
var cal=new Calendar(params.firstDay,params.date,params.onSelect||onSelect);cal.updateOnCloseOnly=params.updateOnCloseOnly
cal.enableReadOnly=params.enableReadOnly
cal.showsTime=params.showsTime;cal.time24=(params.timeFormat=="24");cal.params=params;cal.weekNumbers=params.weekNumbers;cal.setRange(params.range[0],params.range[1]);cal.setDateStatusHandler(params.dateStatusFunc);cal.create(params.flat);cal.show();return false;}
var triggerEl=params.button||params.displayArea||params.inputField;triggerEl["on"+params.eventName]=function(){if(params.onOpen){params.onOpen();}
var dateEl=params.inputField||params.displayArea;var dateFmt=params.inputField?params.ifFormat:params.daFormat;var mustCreate=false;var cal=window.calendar;if(!(cal&&params.cache)){window.calendar=cal=new Calendar(params.firstDay,params.date,params.onSelect||onSelect,params.onClose||function(cal){cal.hide();},params.inputField);cal.updateOnCloseOnly=params.updateOnCloseOnly
cal.enableReadOnly=params.enableReadOnly
cal.showsTime=params.showsTime;cal.time24=(params.timeFormat=="24");cal.weekNumbers=params.weekNumbers;mustCreate=true;}else{if(params.date)
cal.setDate(params.date);cal.hide();}
cal.showsOtherMonths=params.showOthers;cal.yearStep=params.step;cal.setRange(params.range[0],params.range[1]);cal.params=params;cal.setDateStatusHandler(params.dateStatusFunc);cal.setDateFormat(dateFmt);if(mustCreate)
cal.create();cal.parseDate(dateEl.value||dateEl.innerHTML);cal.refresh();if(!params.position)
cal.showAtElement(params.button||params.displayArea||params.inputField,params.align);else
cal.showAt(params.position[0],params.position[1]);return false;};};SUGAR.language.setLanguage('app_strings',{"ERR_CREATING_FIELDS":"Error filling in additional detail fields: ","ERR_CREATING_TABLE":"Error creating table: ","ERR_DELETE_RECORD":"A record number must be specified to delete the contact.","ERR_EXPORT_DISABLED":"Exports Disabled.","ERR_EXPORT_TYPE":"Error exporting ","ERR_INVALID_AMOUNT":"Please enter a valid amount.","ERR_INVALID_DATE_FORMAT":"The date format must be: ","ERR_INVALID_DATE":"Please enter a valid date.","ERR_INVALID_DAY":"Please enter a valid day.","ERR_INVALID_EMAIL_ADDRESS":"not a valid email address.","ERR_INVALID_FILE_REFERENCE":"Invalid File Reference","ERR_INVALID_HOUR":"Please enter a valid hour.","ERR_INVALID_MONTH":"Please enter a valid month.","ERR_INVALID_TIME":"Please enter a valid time.","ERR_INVALID_YEAR":"Please enter a valid 4 digit year.","ERR_NEED_ACTIVE_SESSION":"An active session is required to export content.","ERR_NOT_ADMIN":"Unauthorized access to administration.","ERR_MISSING_REQUIRED_FIELDS":"Missing required field:","ERR_INVALID_VALUE":"Invalid Value:","ERR_NO_SUCH_FILE":"File does not exist on system","ERR_NO_SINGLE_QUOTE":"Cannot use the single quotation mark for ","ERR_NOTHING_SELECTED":"Please make a selection before proceeding.","ERR_OPPORTUNITY_NAME_DUPE":"An opportunity with the name %s already exists.  Please enter another name below.","ERR_OPPORTUNITY_NAME_MISSING":"An opportunity name was not entered.  Please enter an opportunity name below.","ERR_POTENTIAL_SEGFAULT":"A potential Apache segmentation fault was detected.  Please notify your system administrator to confirm this problem and have her\/him report it to SugarCRM.","ERR_SELF_REPORTING":"User cannot report to him or herself.","ERR_SINGLE_QUOTE":"Using the single quote is not supported for this field.  Please change the value.","ERR_SQS_NO_MATCH_FIELD":"No match for field: ","ERR_SQS_NO_MATCH":"No Match","LBL_ACCOUNT":"Account","LBL_ACCOUNTS":"Accounts","LBL_ACCUMULATED_HISTORY_BUTTON_KEY":"H","LBL_ACCUMULATED_HISTORY_BUTTON_LABEL":"View Summary","LBL_ACCUMULATED_HISTORY_BUTTON_TITLE":"View Summary [Alt+H]","LBL_ADD_BUTTON_KEY":"A","LBL_ADD_BUTTON_TITLE":"Add [Alt+A]","LBL_ADD_BUTTON":"Add","LBL_ADD_DOCUMENT":"Add Document","LBL_ADD_TO_PROSPECT_LIST_BUTTON_KEY":"L","LBL_ADD_TO_PROSPECT_LIST_BUTTON_LABEL":"Add To Target List","LBL_ADD_TO_PROSPECT_LIST_BUTTON_TITLE":"Add To Target List","LBL_ADDITIONAL_DETAILS_CLOSE_TITLE":"Click to Close","LBL_ADDITIONAL_DETAILS_CLOSE":"Close","LBL_ADDITIONAL_DETAILS":"Additional Details","LBL_ADMIN":"Admin","LBL_ALT_HOT_KEY":"Alt+","LBL_ARCHIVE":"Archive","LBL_ASSIGNED_TO_USER":"Assigned to User","LBL_ASSIGNED_TO":"Assigned to:","LBL_BACK":"Back","LBL_BILL_TO_ACCOUNT":"Bill to Account","LBL_BILL_TO_CONTACT":"Bill to Contact","LBL_BROWSER_TITLE":"info@hand CRBM System","LBL_BUGS":"Bugs","LBL_BY":"by","LBL_CALLS":"Calls","LBL_CAMPAIGNS_SEND_QUEUED":"Send Queued Campaign Emails","LBL_CANCEL_BUTTON_KEY":"X","LBL_CANCEL_BUTTON_LABEL":"Cancel","LBL_CANCEL_BUTTON_TITLE":"Cancel [Alt+X]","LBL_CASE":"Case","LBL_CASES":"Cases","LBL_CHANGE_BUTTON_KEY":"G","LBL_CHANGE_BUTTON_LABEL":"Change","LBL_CHANGE_BUTTON_TITLE":"Change [Alt+G]","LBL_CHARSET":"UTF-8","LBL_CHECKALL":"Check All","LBL_CLEAR_BUTTON_KEY":"C","LBL_CLEAR_BUTTON_LABEL":"Clear","LBL_CLEAR_BUTTON_TITLE":"Clear [Alt+C]","LBL_CLEARALL":"Clear All","LBL_CLOSE_WINDOW":"Close Window","LBL_CLOSEALL_BUTTON_KEY":"Q","LBL_CLOSEALL_BUTTON_LABEL":"Close All","LBL_CLOSEALL_BUTTON_TITLE":"Close All [Alt+I]","LBL_CLOSE_AND_CREATE_BUTTON_LABEL":"Close and Create New","LBL_CLOSE_AND_CREATE_BUTTON_TITLE":"Close and Create New [Alt+C]","LBL_CLOSE_AND_CREATE_BUTTON_KEY":"C","LBL_COMPOSE_EMAIL_BUTTON_KEY":"L","LBL_COMPOSE_EMAIL_BUTTON_LABEL":"Compose Email","LBL_COMPOSE_EMAIL_BUTTON_TITLE":"Compose Email [Alt+L]","LBL_CONTACT_LIST":"Contact List","LBL_CONTACT":"Contact","LBL_CONTACTS":"Contacts","LBL_CREATE_BUTTON_LABEL":"Create","LBL_CREATED_BY_USER":"Created by User","LBL_CREATED":"Created by","LBL_CURRENT_USER_FILTER":"Only my items:","LBL_DATE_ENTERED":"Date Created:","LBL_DATE_MODIFIED":"Last Modified:","LBL_DELETE_BUTTON_KEY":"D","LBL_DELETE_BUTTON_LABEL":"Delete","LBL_DELETE_BUTTON_TITLE":"Delete [Alt+D]","LBL_DELETE_BUTTON":"Delete","LBL_DELETE":"Delete","LBL_DELETED":"Deleted","LBL_DIRECT_REPORTS":"Direct Reports","LBL_DONE_BUTTON_KEY":"X","LBL_DONE_BUTTON_LABEL":"Done","LBL_DONE_BUTTON_TITLE":"Done [Alt+X]","LBL_DST_NEEDS_FIXIN":"The application requires a Daylight Saving Time fix to be applied.  Please go to the <a href=\"index.php?module=Administration&action=DstFix\">Repair<\/a> link in the Admin console and apply the Daylight Saving Time fix.","LBL_DUPLICATE_BUTTON_KEY":"U","LBL_DUPLICATE_BUTTON_LABEL":"Duplicate","LBL_DUPLICATE_BUTTON_TITLE":"Duplicate [Alt+U]","LBL_DUPLICATE_BUTTON":"Duplicate","LBL_EDIT_BUTTON_KEY":"E","LBL_EDIT_BUTTON_LABEL":"Edit","LBL_EDIT_BUTTON_TITLE":"Edit [Alt+E]","LBL_EDIT_BUTTON":"Edit","LBL_VIEW_BUTTON_KEY":"V","LBL_VIEW_BUTTON_LABEL":"View","LBL_VIEW_BUTTON_TITLE":"View [Alt+V]","LBL_VIEW_BUTTON":"View","LBL_EMAIL_PDF_BUTTON_KEY":"M","LBL_EMAIL_PDF_BUTTON_LABEL":"Email as PDF","LBL_EMAIL_PDF_BUTTON_TITLE":"Email as PDF [Alt+M]","LBL_EMAILS":"Emails","LBL_EMPLOYEES":"Employees","LBL_ENTER_DATE":"Enter Date","LBL_EXPORT_ALL":"Export All","LBL_EXPORT":"Export","LBL_GO_BUTTON_LABEL":"Go","LBL_HIDE":"Hide","LBL_ID":"ID","LBL_IMPORT_PROSPECTS":"Import Targets","LBL_IMPORT":"Import","LBL_IMPORT_STARTED":"Import Started: ","LBL_MISSING_CUSTOM_DELIMITER":"Must specify a custom delimiter.","LBL_LAST_VIEWED":"Last Viewed","LBL_LEADS":"Leads","LBL_LIST_ACCOUNT_NAME":"Account Name","LBL_LIST_ASSIGNED_USER":"User","LBL_LIST_CONTACT_NAME":"Contact Name","LBL_LIST_CONTACT_ROLE":"Contact Role","LBL_LIST_EMAIL":"Email","LBL_LIST_NAME":"Name","LBL_LIST_OF":"of","LBL_LIST_PHONE":"Phone","LBL_LIST_USER_NAME":"User Name","LBL_LISTVIEW_MASS_UPDATE_CONFIRM":"Are you sure you want to update the entire list?","LBL_LISTVIEW_NO_SELECTED":"Please select at least 1 record to proceed.","LBL_LISTVIEW_TWO_REQUIRED":"Please select at least 2 records to proceed.","LBL_LISTVIEW_OPTION_CURRENT":"Current Page","LBL_LISTVIEW_OPTION_ENTIRE":"Entire List","LBL_LISTVIEW_OPTION_SELECTED":"Selected Records","LBL_LISTVIEW_SELECTED_OBJECTS":"Selected: ","LBL_LOCALE_NAME_EXAMPLE_FIRST":"John","LBL_LOCALE_NAME_EXAMPLE_LAST":"Doe","LBL_LOCALE_NAME_EXAMPLE_SALUTATION":"Mr.","LBL_LOGOUT":"Logout","LBL_MAILMERGE_KEY":"M","LBL_MAILMERGE":"Mail Merge","LBL_MASS_UPDATE":"Mass Update","LBL_MEETINGS":"Meetings","LBL_MEMBERS":"Members","LBL_MODIFIED_BY_USER":"Modified by User","LBL_MODIFIED":"Modified by","LBL_MY_ACCOUNT":"My Account","LBL_NAME":"Name","LBL_NEW_BUTTON_KEY":"N","LBL_NEW_BUTTON_LABEL":"Create","LBL_NEW_BUTTON_TITLE":"Create [Alt+N]","LBL_NEXT_BUTTON_LABEL":"Next","LBL_NONE":"--None--","LBL_NOTES":"Notes","LBL_OPENALL_BUTTON_KEY":"O","LBL_OPENALL_BUTTON_LABEL":"Open All","LBL_OPENALL_BUTTON_TITLE":"Open All [Alt+O]","LBL_OPENTO_BUTTON_KEY":"T","LBL_OPENTO_BUTTON_LABEL":"Open To: ","LBL_OPENTO_BUTTON_TITLE":"Open To: [Alt+T]","LBL_OPPORTUNITIES":"Opportunities","LBL_OPPORTUNITY_NAME":"Opportunity Name","LBL_OPPORTUNITY":"Opportunity","LBL_OR":"OR","LBL_PERCENTAGE_SYMBOL":"%","LBL_PRODUCT_BUNDLES":"Product Bundles","LBL_PRODUCTS":"Products","LBL_PROJECT_TASKS":"Project Tasks","LBL_PROJECTS":"Projects","LBL_QUOTE_TO_OPPORTUNITY_KEY":"O","LBL_QUOTE_TO_OPPORTUNITY_LABEL":"Create Opportunity from Quote","LBL_QUOTE_TO_OPPORTUNITY_TITLE":"Create Opportunity from Quote [Alt+O]","LBL_QUOTES_SHIP_TO":"Quotes Ship to","LBL_QUOTES":"Quotes","LBL_RELATED_RECORDS":"Related Records","LBL_REMOVE":"Remove","LBL_REQUIRED_SYMBOL":"*","LBL_SAVE_BUTTON_KEY":"S","LBL_SAVE_BUTTON_LABEL":"Save","LBL_SAVE_BUTTON_TITLE":"Save [Alt+S]","LBL_SAVE_AS_BUTTON_KEY":"A","LBL_SAVE_AS_BUTTON_LABEL":"Save As","LBL_SAVE_AS_BUTTON_TITLE":"Save As [Alt+A]","LBL_FULL_FORM_BUTTON_KEY":"F","LBL_FULL_FORM_BUTTON_LABEL":"Full Form","LBL_FULL_FORM_BUTTON_TITLE":"Full Form [Alt+F]","LBL_SAVE_NEW_BUTTON_KEY":"V","LBL_SAVE_NEW_BUTTON_LABEL":"Save & Create New","LBL_SAVE_NEW_BUTTON_TITLE":"Save & Create New [Alt+V]","LBL_SEARCH_BUTTON_KEY":"Q","LBL_SEARCH_BUTTON_LABEL":"Search","LBL_SEARCH_BUTTON_TITLE":"Search [Alt+Q]","LBL_SEARCH":"Search","LBL_SELECT_BUTTON_KEY":"T","LBL_SELECT_BUTTON_LABEL":"Select","LBL_SELECT_BUTTON_TITLE":"Select [Alt+T]","LBL_SELECT_CONTACT_BUTTON_KEY":"T","LBL_SELECT_CONTACT_BUTTON_LABEL":"Select Contact","LBL_SELECT_CONTACT_BUTTON_TITLE":"Select Contact [Alt+T]","LBL_SELECT_REPORTS_BUTTON_LABEL":"Select from Reports","LBL_SELECT_REPORTS_BUTTON_TITLE":"Select Reports","LBL_SELECT_USER_BUTTON_KEY":"U","LBL_SELECT_USER_BUTTON_LABEL":"Select User","LBL_SELECT_USER_BUTTON_TITLE":"Select User [Alt+U]","LBL_SERVER_RESPONSE_RESOURCES":"Resources used to construct this page (queries, files)","LBL_SERVER_RESPONSE_TIME_SECONDS":"seconds.","LBL_SERVER_RESPONSE_TIME":"Server response time:","LBL_SHIP_TO_ACCOUNT":"Ship to Account","LBL_SHIP_TO_CONTACT":"Ship to Contact","LBL_SHORTCUTS":"Shortcuts","LBL_SHOW":"Show","LBL_SQS_INDICATOR":"","LBL_STATUS_UPDATED":"Your Status for this event has been updated!","LBL_STATUS":"Status:","LBL_SUBJECT":"Subject","LBL_SYNC":"Sync","LBL_TABGROUP_ALL":"All","LBL_TABGROUP_ACTIVITIES":"Activities","LBL_TABGROUP_COLLABORATION":"Collaboration","LBL_TABGROUP_HOME":"Today","LBL_TABGROUP_MARKETING":"Marketing","LBL_TABGROUP_MY_PORTALS":"My Websites","LBL_TABGROUP_OTHER":"Other","LBL_TABGROUP_REPORTS":"Reports & Charts","LBL_TABGROUP_SALES":"Sales","LBL_TABGROUP_SUPPORT":"Customer Service","LBL_TABGROUP_TOOLS":"Tools","LBL_TASKS":"Tasks","LBL_TEAMS_LINK":"Team","LBL_THOUSANDS_SYMBOL":"K","LBL_TRACK_EMAIL_BUTTON_KEY":"K","LBL_TRACK_EMAIL_BUTTON_LABEL":"Archive Email","LBL_TRACK_EMAIL_BUTTON_TITLE":"Archive Email [Alt+K]","LBL_UNAUTH_ADMIN":"Unauthorized access to administration","LBL_UNDELETE_BUTTON_LABEL":"Undelete","LBL_UNDELETE_BUTTON_TITLE":"Undelete [Alt+D]","LBL_UNDELETE_BUTTON":"Undelete","LBL_UNDELETE":"Undelete","LBL_UNSYNC":"Unsync","LBL_UPDATE":"Update","LBL_USER_LIST":"User List","LBL_USERS_SYNC":"Users Sync","LBL_USERS":"Users","LBL_VIEW_PDF_BUTTON_KEY":"P","LBL_VIEW_PDF_BUTTON_LABEL":"Print as PDF","LBL_VIEW_PDF_BUTTON_TITLE":"Print as PDF [Alt+P]","LNK_ABOUT":"About","LNK_ADVANCED_SEARCH":"Advanced","LNK_BASIC_SEARCH":"Basic","LNK_SAVED_VIEWS":"Saved Search & Layout","LNK_DELETE_ALL":"del all","LNK_DELETE":"del","LNK_EDIT":"edit","LNK_GET_LATEST":"Get latest","LNK_GET_LATEST_TOOLTIP":"Replace with latest version","LNK_HELP":"Help","LNK_LIST_END":"End","LNK_LIST_NEXT":"Next","LNK_LIST_PREVIOUS":"Previous","LNK_LIST_RETURN":"Return to List","LNK_LIST_START":"Start","LNK_LOAD_SIGNED":"Sign","LNK_LOAD_SIGNED_TOOLTIP":"Replace with signed document","LNK_PRINT":"Print","LNK_REMOVE":"rem","LNK_RESUME":"Resume","LNK_VIEW_CHANGE_LOG":"View Change Log","NTC_CLICK_BACK":"Please click the browser back button and fix the error.","NTC_DATE_FORMAT":"(yyyy-mm-dd)","NTC_DATE_TIME_FORMAT":"(yyyy-mm-dd 24:00)","NTC_DELETE_CONFIRMATION_MULTIPLE":"Are you sure you want to delete selected record(s)?","NTC_DELETE_CONFIRMATION":"Are you sure you want to delete this record?","NTC_LOGIN_MESSAGE":"Please enter your username and password.","NTC_NO_ITEMS_DISPLAY":"none","NTC_REMOVE_CONFIRMATION":"Are you sure you want to remove this relationship?","NTC_REQUIRED":"Indicates required field","NTC_SUPPORT_SUGARCRM":"Support the SugarCRM open source project with a donation through PayPal - it's fast, free and secure!","NTC_TIME_FORMAT":"(24:00)","NTC_WELCOME":"Welcome","NTC_YEAR_FORMAT":"(yyyy)","LOGIN_LOGO_ERROR":"Please replace the SugarCRM logos.","ERROR_FULLY_EXPIRED":"Your company's license for SugarCRM has expired for more than 30 days and needs to be brought up to date. Only admins may login.","ERROR_LICENSE_EXPIRED":"Your company's license for SugarCRM needs to be updated. Only admins may login","ERROR_LICENSE_VALIDATION":"Your company's license for SugarCRM needs to be validated. Only admins may login","ERROR_NO_RECORD":"Error retrieving record.  This record may be deleted or you may not be authorized to view it.","LBL_DUP_MERGE":"Find Duplicates","LBL_MANAGE_SUBSCRIPTIONS":"Manage Subscriptions","LBL_MANAGE_SUBSCRIPTIONS_FOR":"Manage Subscriptions for ","LBL_SUBSCRIBE":"Subscribe","LBL_UNSUBSCRIBE":"Unsubscribe","LBL_LOADING":"Loading ...","LBL_SAVING_LAYOUT":"Saving Layout ...","LBL_SAVED_LAYOUT":"Layout has been saved.","LBL_SAVED":"Saved","LBL_SAVING":"Saving","LBL_FAILED":"Failed!","LBL_DISPLAY_COLUMNS":"Display Columns","LBL_HIDE_COLUMNS":"Hide Columns","LBL_SEARCH_CRITERIA":"Search Criteria","LBL_SAVED_VIEWS":"Saved Views","LBL_PROCESSING_REQUEST":"Processing..","LBL_REQUEST_PROCESSED":"Done","LBL_MERGE_DUPLICATES":"Merge Duplicates","LBL_SAVED_SEARCH_SHORTCUT":"Saved Searches:","LBL_SEARCH_POPULATE_ONLY":"Perform a search using the search form above","LBL_DETAILVIEW":"Detail View","LBL_LISTVIEW":"List View","LBL_EDITVIEW":"Edit View","LBL_SEARCHFORM":"Search Form","LBL_SAVED_SEARCH_ERROR":"Please provide a name for this view.","LBL_DISPLAY_LOG":"Display Log","ERROR_JS_ALERT_SYSTEM_CLASS":"System","ERROR_JS_ALERT_TIMEOUT_TITLE":"Session Timeout","ERROR_JS_ALERT_TIMEOUT_MSG_1":"Your session is about to timeout in 2 minutes. Please save your work.","ERROR_JS_ALERT_TIMEOUT_MSG_2":"Your session has timed out.","MSG_JS_ALERT_MTG_REMINDER_AGENDA":"\nAgenda: ","MSG_JS_ALERT_MTG_REMINDER_MEETING":"Meeting","MSG_JS_ALERT_MTG_REMINDER_CALL":"Call","MSG_JS_ALERT_MTG_REMINDER_TIME":"Time: ","MSG_JS_ALERT_MTG_REMINDER_LOC":"Location: ","MSG_JS_ALERT_MTG_REMINDER_DESC":"Description: ","MSG_JS_ALERT_MTG_REMINDER_MSG":"\nClick OK to view this meeting or click Cancel to dismiss this message.","LBL_GENERATE_WEB_TO_LEAD_FORM":"Generate Form","LBL_SAVE_WEB_TO_LEAD_FORM":"Save Web To Lead Form","LBL_PLEASE_SELECT":"Please Select","LBL_REDIRECT_URL":"Redirect URL","LBL_RELATED_CAMPAIGN":"Related campaign","LBL_ADD_ALL_LEAD_FIELDS":"Add All Fields","LBL_REMOVE_ALL_LEAD_FIELDS":"Remove All Fields","LBL_ONLY_IMAGE_ATTACHMENT":"Only image type attachment can be embedded","LBL_TRAINING":"Training","ERR_DATABASE_CONN_DROPPED":"Error executing a query. Possibly, your database dropped the connection. Please refresh this page, you may need to restart you web server.","ERR_MSSQL_DB_CONTEXT":"Changed database context to","LBL_TABGROUP_SECURITY":"Teams","LBL_FREE_TRIAL":"Free Trial","LBL_DEMO_VERSION":"Demo Version","MSG_LIC_UPGRADES_DISABLED":"Upgrades are disabled. Please check the status of your support contract.","LBL_EDIT_DASHLET":"Edit Dashlet","LBL_DELETE_DASHLET":"Delete Dashlet","LBL_REFRESH_DASHLET":"Refresh Dashlet","LBL_SHORT_BROWSER_TITLE":"info@hand","LBL_HOURS_SHORT":"hrs","NTC_APPNAME":"CRBM System {VERSION}","NTC_LICENSED_TO":"Licensed to:","LBL_HR":"HR","LBL_DIRECTORY":"Directory","LBL_LIST_DATE_ENTERED":"Date Created","LBL_LIST_DATE_MODIFIED":"Date Modified","LBL_LIST_STATUS":"Status","LNK_NEW_NOTE":"Create Note","LBL_LIST_PROBABILITY":"Prob.","LBL_SAVE_AND_NEW_BUTTON":"Save & New","LBL_SAVE_AND_CLOSE_BUTTON":"Save & Close","LBL_SELECT_RESOURCE_BUTTON_TITLE":"Select Resource [Alt+R]","LBL_SELECT_RESOURCE_BUTTON_KEY":"R","LBL_SELECT_RESOURCE_BUTTON_LABEL":"Select Resource","LBL_RESOURCE_LIST":"Resource List","LBL_RESOURCES":"Resources","LBL_LIST_SERVICE_CONTRACT":"Service Contract","LBL_SERVICE_CONTRACT":"Service Contract:","LBL_CATEGORY":"Category:","LBL_LIST_CATEGORY":"Category","LBL_DOCUMENTS":"Documents","LBL_DOCUMENTS_SUBPANEL_TITLE":"Documents","LBL_QUOTES_SUBPANEL_TITLE":"Quotes","LBL_INVOICE_SUBPANEL_TITLE":"Invoices","LBL_ASSEMBLIES_SUBPANEL_TITLE":"Assemblies","LBL_SUPPORTED_ASSEMBLIES_SUBPANEL_TITLE":"Supported Assemblies","LBL_CONV_TO_PROJECT":"Convert to Project","LBL_SELECT_ALL_BUTTON_TITLE":"Select All","LBL_SELECT_ALL_BUTTON_LABEL":"Select All","LBL_VIEW_CLOSED_ITEMS":"View closed items: ","LBL_ALL_ACTIVE":"All Active","LBL_IS_PRIVATE":"Private: ","LBL_EXPORT_BUTTON_TITLE":"Export [Alt-E]","LBL_EXPORT_BUTTON_KEY":"E","LBL_EXPORT_BUTTON_LABEL":"Export","LBL_COMMIT_BUTTON_TITLE":"Commit [Alt+S]","LBL_COMMIT_BUTTON_LABEL":"Commit","LBL_START_EDIT_BUTTON_TITLE":"Start Edit [Alt+E]","LBL_START_EDIT_BUTTON_KEY":"E","LBL_START_EDIT_BUTTON_LABEL":"Start Edit","LBL_EXCHANGE_RATE":"Exchange Rate:","LBL_LIST_EXCHANGE_RATE":"Exchange Rate","LBL_EDIT_EXCHANGE_RATE_TITLE":"Adjust Exchange Rate","LBL_EDIT_EXCHANGE_RATE_ALT":"[Adjust Rate]","LBL_STANDARD_RATE":"Standard Rate:","LBL_CUSTOM_RATE":"Custom Rate:","LBL_RESET_BUTTON_LABEL":"Reset","LBL_LINK_UPDATES":"Link Updates","LBL_CLEAR_EXCHANGE_RATE_ALT":"[Clear]","LBL_BOOKED_HOURS":"Booked Hours","LBL_BOOKING_CATEGORY":"Booking Category","LBL_BOOKED_HOURS_SUBPANEL_TITLE":"Booked Hours","LBL_BOOKING_BUTTON_TITLE":"Book Hours [Alt+B]","LBL_BOOKING_BUTTON_LABEL":"Book Hours...","LBL_BOOKING_BUTTON_KEY":"B","LNK_UP":"up","LNK_DOWN":"down","LNK_INS":"insert","LBL_TIME_PERIOD_YEARS_MONTHS":"%1y %2m","LBL_TIME_PERIOD_DAYS_HOURS":"%1d %2h","LBL_CAMPAIGNS":"Campaigns:","LBL_EVENTS":"Marketing Events:","LBL_PARTNER":"Partner:","LBL_PARTNERS":"Partners:","LBL_PROSPECTS":"Targets:","LBL_PROSPECT_LIST":"Target Lists:","LBL_RETURN":"Return","LBL_RECUR_BUTTON_TITLE":"Recurrence [Alt+R]","LBL_RECUR_BUTTON_KEY":"R","LBL_RECUR_BUTTON_LABEL":"Recurrence...","LBL_RECURRENCE_NUMBER":"Instance #","LBL_RECURRENCE_OF_ID":"Recurrence of ID","LBL_RECURRENCE_INDEX":"Recurrence Index","LBL_RECURRENCE_FORWARD_TIMES":"Recurrence Forward Times","LBL_PARENT_NAME":"Parent Name:","LBL_REASSIGN":"Re-Assign ","LBL_PDF_PHONE":"Phone","LBL_PDF_FAX":"Fax","LBL_PDF_PAGE_NUMBER_STRING":"{pg} of {nb}","MSG_DASHLET_NO_ACCESS":"You do not have access to this module","LBL_TABGROUP_SALES_MARKETING":"Sales & Marketing","LBL_TABGROUP_ORDER_MANAGEMENT":"Order Management","LBL_TABGROUP_PROJECT_MANAGEMENT":"Project Management","LBL_CREATE_PDF":"Create PDF...","LBL_USE_ADDRESS":"Use Address:","LBL_USE_LAYOUT":"Use Layout:","LBL_PDF_PDF":"Print","LBL_PDF_EMAIL":"Email","LBL_SKILL_NAME":"Skill:","LBL_SKILL_RATING":"Rating:","LNK_EDIT_ATTENDACE":"Attendance","LBL_200_LEADS":"Sending emails to Leads is limited to 200 recipients","LBL_ACCOUNT_NAME_FORMAT":"[Account Name]","LBL_CONTACT_NAME_FORMAT":"[Contact Name]","LBL_STREET_FORMAT":"[Street]","LBL_CITY_FORMAT":"[City]","LBL_STATE_FORMAT":"[State]","LBL_POSTAL_CODE_FORMAT":"[Postal Code]","LBL_COUNTRY_FORMAT":"[Country]","LBL_COMPANY_NAME_FORMAT":"[Company Name]","LBL_PHONE_NUMBER_FORMAT":"[Phone Number]","LBL_FAX_NUMBER_FORMAT":"[Fax Number]","LBL_DATE_LONG_FORMAT":"%A %B %e, %Y","LNK_PDF":"PDF","LBL_STUDIO_DROP_HERE":"[Drop Here]","LBL_EXPORT_VCARDS":"Export vCards","LBL_RTF_NO_TEMPLATE":"Please select an RTF template","LBL_RTF_INVALID_SEL":"Only RTF templates are accepted","LBL_RUN_QUICKCAMPAIGN_BUTTON_LABEL":"Run Campaign","LBL_QUICKCAMPAIGN_BUTTON_LABEL":"Quick Campaign","LBL_QUICKCAMPAIGN_BUTTON_CANCEL":"Cancel Quick Campaign","LBL_QUICKCAMPAIGN":"Quick Campaign","LBL_TEMPLATE_QUICKCAMPAIGN":"Email Template:","LBL_MAILBOX_QUICKCAMPAIGN":"Campaign Mailbox:","LBL_MISING_TEMPLATE":"Please select an email template","LBL_MISING_MAILBOX":"Please select a campaign mailbox","LBL_PREVIEW":"Preview","LBL_QUICKCAMPAIGN_CONFIRM":"Click Run Campaign to Mass Update all selected Leads\/Contacts, and send them each a personalized email","ERR_TEMPLATE_EMPTY":"Error: Template is empty","ERR_MAILBOX_EMPTY":"Error: Mailbox is empty","ERR_MODULE_IDS_EMPTY":"Error: Contacts List or Leads List is empty","ERR_MODULE_IDS_NOT_ARRAY":"Module is not an array","ERR_MODULE_NAME_EMPTY":"Error: Module name is empty","NTC_SERVER_BAD_RESPONSE":"Error: The server returned an unexpected response.","LBL_RUN_MERGE":"Run Merge","LBL_MAIL_MERGE_NOTE":"Please select an RTF file to use as the document template:","NTC_NEW_EMAIL_MESSAGE":"New Email Message","NTC_NEW_EMAIL_MESSAGES":"%d New Email Messages","NTC_JS_SESSION_ENDED":"Your session has ended. Please log in again to continue.","NTC_JS_FORBIDDEN":"Access to the requested data is forbidden.","LBL_DUPLICATE_LIST":"Duplicate List","LBL_DUPLICATES_FOUND":"Potential Duplicates Found","LBL_DUPE_SAVED_RECORD":"Saved record:","LBL_SCHEDULE_CALL":"Schedule Call","LBL_SCHEDULE_MEETING":"Schedule Meeting","LBL_VISIBILITY":"Visibility:","LBL_DAY_CAL_LINK":"Day","LBL_WEEK_CAL_LINK":"Week","LBL_MONTH_CAL_LINK":"Month","LBL_CURRENCY_ID":"Currency ID:","LBL_SECURITYGROUPS":"Teams","LBL_LIST_DESCRIPTION":"Description","LBL_LIST_STATUS_ICON":"(Status Icon)","LBL_ASYNC_JS_ERROR":"There was an error handling this request.","LBL_MAP":"Map","LBL_SHOW_ON_MAP":"Show on Map","LBL_REDIRECT_COUNTDOWN":"Redirecting to Home page in {TIME}...","LBL_ADJUST_LIST_POS_TITLE":"Adjust List Position","LBL_LISTVIEW_OFFSET":"Start At:"});SUGAR.language.setLanguage('app_list_strings',{"language_pack_name":"US English","moduleList":{"Home":"Today","Dashboard":"Dashboard","Contacts":"Contacts","Accounts":"Accounts","Opportunities":"Opportunities","Cases":"Cases","Notes":"Notes","Calls":"Calls","Emails":"Email","Meetings":"Meetings","Tasks":"Tasks","Calendar":"Calendar","Leads":"Leads","Activities":"Activities","Bugs":"Software Bugs","Feeds":"News Feeds","iFrames":"Websites","TimePeriods":"Time Periods","Project":"Projects","ProjectTask":"Project Tasks","Campaigns":"Campaigns","Documents":"Documents","Sync":"Sync","Users":"Users","Releases":"Releases","SoftwareProducts":"Software Products","Prospects":"Targets","Queues":"Queues","EmailMarketing":"Email Marketing","EmailTemplates":"Email Templates","ProspectLists":"Target Lists","SavedSearch":"Saved Searches","HR":"Human Resources","Directory":"Directory","Service":"Service Contracts","ProductCatalog":"Product Catalog","ProductCategories":"Product Categories","ProductTypes":"Product Types","Assets":"Supported Products","EmailFolders":"Email Folders","Resources":"Resources","Quotes":"Quotes","Invoice":"Invoices","Payments":"Incoming Payments","PaymentsOut":"Outgoing Payments","Reports":"Reports","ReportData":"Reports","Forecasts":"Forecasts","Administration":"Administration","Timesheets":"Timesheets","Vacations":"Vacations &amp; Sick days","Assemblies":"Assemblies","SupportedAssemblies":"Supported Assemblies","SerialNumbers":"Serial Numbers","Models":"Models","SubContracts":"Service Subcontracts","ContractTypes":"Svc. Contract Types","TaxRates":"Tax Rates","TaxCodes":"Tax Codes","Discounts":"Discounts","PurchaseOrders":"Purchase Orders","Bills":"Bills","SalesOrders":"Sales Orders","Shipping":"Shipping","Receiving":"Receiving","ShippingProviders":"Shipping Providers","Skills":"Skills","EmailMan":"Outbound Email Queue Management","EmailPOP3":"Monitored Email Accounts","EventSessions":"Marketing Events","Events":"Marketing Events","EventReminders":"Event Reminders","EventsCustomers":"Event Attendance","Partners":"Partners","CampaignLog":"Campaign Log","ACLRoles":"Roles","Forums":"Forums","Threads":"Threads","Posts":"Posts","ForumTopics":"Forum Topics","KBArticles":"Knowledge Base","PrepaidAmounts":"Prepaid Amounts","ProductAttributes":"Product Attributes","Booking":"Booked Hours","BookingCategories":"Booking Categories","SecurityGroups":"Teams"},"moduleListSingular":{"Home":"Today","Dashboard":"Dashboard","Contacts":"Contact","Accounts":"Account","Opportunities":"Opportunity","Cases":"Case","Notes":"Note","Calls":"Call","Emails":"Email","Meetings":"Meeting","Tasks":"Task","Calendar":"Calendar","Leads":"Lead","Activities":"Activitie","Bugs":"Software Bug","Feeds":"News Feed","iFrames":"Website","TimePeriods":"Time Period","Project":"Projects","ProjectTask":"Project Task","Campaigns":"Campaigns","Documents":"Documents","Sync":"Sync","Users":"User","HR":"Human Resource","Directory":"Employee","Service":"Service Contract","ProductCatalog":"Product","Assets":"Supported Product","EmailFolders":"Email Folder","EmailTemplates":"Email Template","Resources":"Resource","Quotes":"Quote","Invoice":"Invoice","Reports":"Report","ReportData":"Report","Administration":"Administration","Timesheets":"Timesheet","Vacations":"Leave","Assemblies":"Assembly","SupportedAssemblies":"Supported Assembly","EmailMarketing":"Email Marketing","ProspectLists":"Target List","Prospects":"Target","SerialNumbers":"Serial Number","SubContracts":"Service Subcontract","ContractTypes":"Svc. Contract Type","TaxRates":"Tax Rate","TaxCodes":"Tax Code","Discounts":"Discount","ShippingProviders":"Shipping Provider","PurchaseOrders":"Purchase Order","SalesOrders":"Sales Order","Shipping":"Shipping","Receiving":"Receiving","CampaignLog":"Campaign Log","Forums":"Forum","Threads":"Thread","Posts":"Post","ForumTopics":"Forum Topic","PrepaidAmounts":"Prepaid Amount","ProductAttributes":"Product Attribute","Booking":"Booked Hours","BookingCategories":"Booking Category","EventSessions":"Event"},"checkbox_dom":{"":"","1":"Yes","2":"No"},"account_type_dom":{"":"","Analyst":"Analyst","Competitor":"Competitor","Customer":"Customer","Investor":"Investor","Partner":"Partner","Press":"Press","Prospect":"Target","Supplier":"Supplier","Manufacturer":"Manufacturer","Other":"Other"},"industry_dom":{"":"","Apparel":"Apparel","Banking":"Banking","Biotechnology":"Biotechnology","Chemicals":"Chemicals","Communications":"Communications","Construction":"Construction","Consulting":"Consulting","Education":"Education","Electronics":"Electronics","Energy":"Energy","Engineering":"Engineering","Entertainment":"Entertainment","Environmental":"Environmental","Finance":"Finance","Government":"Government","Healthcare":"Healthcare","Hospitality":"Hospitality","Insurance":"Insurance","Machinery":"Machinery","Manufacturing":"Manufacturing","Media":"Media","Not For Profit":"Not For Profit","Recreation":"Recreation","Retail":"Retail","Shipping":"Shipping","Technology":"Technology","Telecommunications":"Telecommunications","Transportation":"Transportation","Utilities":"Utilities","Other":"Other"},"source_default_key":"","lead_source_dom":{"":"","Cold Call":"Cold Call","Existing Customer":"Existing Customer","Self Generated":"Self Generated","Employee":"Employee","Partner":"Partner","Public Relations":"Public Relations","Direct Mail":"Direct Mail","Conference":"Conference","Trade Show":"Trade Show","Web Site":"Web Site","Customer Portal":"Customer Portal","Word of mouth":"Word of mouth","Email":"Email","Other":"Other"},"opportunity_type_dom":{"":"","Existing Business":"Existing Business","New Business":"New Business"},"roi_type_dom":{"Revenue":"Revenue","Investment":"Investment","Expected_Revenue":"Expected Revenue","Budget":"Budget"},"opportunity_relationship_type_default_key":"Primary Decision Maker","opportunity_relationship_type_dom":{"":"","Primary Decision Maker":"Primary Decision Maker","Business Decision Maker":"Business Decision Maker","Business Evaluator":"Business Evaluator","Technical Decision Maker":"Technical Decision Maker","Technical Evaluator":"Technical Evaluator","Executive Sponsor":"Executive Sponsor","Influencer":"Influencer","Other":"Other"},"case_relationship_type_default_key":"Primary Contact","case_relationship_type_dom":{"":"","Primary Contact":"Primary Contact","Alternate Contact":"Alternate Contact"},"payment_terms":{"":"","Net 15":"Net 15","Net 30":"Net 30"},"sales_stage_default_key":"Prospecting","sales_stage_dom":{"Prospecting":"Prospecting","Qualification":"Qualification","Needs Analysis":"Needs Analysis","Value Proposition":"Value Proposition","Id. Decision Makers":"Id. Decision Makers","Perception Analysis":"Perception Analysis","Proposal\/Price Quote":"Proposal\/Price Quote","Negotiation\/Review":"Negotiation\/Review","Awaiting Paperwork":"Awaiting Paperwork","Closed Won":"Closed Won","Closed Lost":"Closed Lost"},"sales_probability_dom":{"Prospecting":"10","Qualification":"20","Needs Analysis":"25","Value Proposition":"30","Id. Decision Makers":"40","Perception Analysis":"50","Proposal\/Price Quote":"65","Negotiation\/Review":"80","Awaiting Paperwork":"90","Closed Won":"100","Closed Lost":"0"},"activity_dom":{"Call":"Call","Meeting":"Meeting","Task":"Task","Email":"Email","Note":"Note"},"salutation_dom":{"":"","Mr.":"Mr.","Ms.":"Ms.","Mrs.":"Mrs.","Dr.":"Dr.","Prof.":"Prof."},"reminder_max_time":3600,"reminder_time_options":{"60":"1 minute prior","300":"5 minutes prior","600":"10 minutes prior","900":"15 minutes prior","1800":"30 minutes prior","3600":"1 hour prior","7200":"2 hours prior","14400":"4 hours prior","28800":"8 hours prior","86400":"1 day prior"},"task_status_default":"Not Started","task_status_dom":{"Not Started":"Not Started","In Progress":"In Progress","Completed":"Completed","Pending Input":"Pending Input","Deferred":"Deferred"},"meeting_status_default":"Planned","meeting_status_dom":{"Planned":"Planned","Held":"Held","Not Held":"Not Held"},"call_status_default":"Planned","call_status_dom":{"Planned":"Planned","Held":"Held","Not Held":"Not Held"},"call_direction_default":"Outbound","call_direction_dom":{"Inbound":"Inbound","Outbound":"Outbound"},"lead_status_dom":{"":"","New":"New","Assigned":"Assigned","In Process":"In Process","Converted":"Converted","Recycled":"Recycled","Dead":"Dead"},"lead_status_noblank_dom":{"New":"New","Assigned":"Assigned","In Process":"In Process","Converted":"Converted","Recycled":"Recycled","Dead":"Dead"},"case_status_default_key":"Active - New","case_status_dom":{"Active - New":"Active - New","Active - Assigned":"Active - Assigned","Pending":"Pending","Closed - Complete":"Closed - Complete","Closed - No Fault":"Closed - No Fault"},"case_priority_default_key":"P2","case_priority_dom":{"P1":"High","P2":"Medium","P3":"Low"},"user_status_dom":{"Active":"Active","Inactive":"Inactive","Info Only":"Info Only"},"employee_status_dom":{"Active":"Active","Terminated":"Terminated","Leave of Absence":"Leave of Absence"},"messenger_type_dom":{"":"","MSN":"MSN","Yahoo!":"Yahoo!","AOL":"AOL"},"project_task_status_options":{"Not Started":"Not Started","In Progress":"In Progress","Completed":"Completed","Pending Input":"Pending Input","Deferred":"Deferred"},"project_task_utilization_options":{"0":"none","10":"10","20":"20","25":"25","30":"30","40":"40","50":"50","60":"60","70":"70","75":"75","80":"80","90":"90","100":"100"},"record_type_default_key":"Accounts","record_type_display":{"Accounts":"Account","Opportunities":"Opportunity","Cases":"Case","Leads":"Lead","Bugs":"Bug","Project":"Project","Quotes":"Quote","Invoice":"Invoice","PurchaseOrders":"Purchase Order","SalesOrders":"Sales Order","Emails":"Email","ProjectTask":"Project Task","Tasks":"Task","Contacts":"Contact","Prospects":"Prospect"},"record_type_display_notes":{"Accounts":"Account","Opportunities":"Opportunity","Cases":"Case","Documents":"Document","Leads":"Lead","Bugs":"Bug","Emails":"Email","Project":"Project","Quotes":"Quote","Invoice":"Invoice","PurchaseOrders":"Purchase Order","Bills":"Bills","SalesOrders":"Sales Order","Shipping":"Shipping","Receiving":"Receiving","ProjectTask":"Project Task","Meetings":"Meeting","Calls":"Call","KBArticles":"Knowledge Base"},"quote_type_dom":{"Quotes":"Quote","Orders":"Order"},"default_quote_stage_key":"Draft","quote_stage_dom":{"Draft":"Draft","Negotiation":"Negotiation","Delivered":"Delivered","On Hold":"On Hold","Confirmed":"Confirmed","Closed Accepted":"Closed Accepted","Closed Lost":"Closed Lost","Closed Dead":"Closed Dead"},"default_order_stage_key":"Pending","order_stage_dom":{"Pending":"Pending","Confirmed":"Confirmed","On Hold":"On Hold","Shipped":"Shipped","Cancelled":"Cancelled"},"quote_relationship_type_default_key":"Primary Decision Maker","quote_relationship_type_dom":{"":"","Primary Decision Maker":"Primary Decision Maker","Business Decision Maker":"Business Decision Maker","Business Evaluator":"Business Evaluator","Technical Decision Maker":"Technical Decision Maker","Technical Evaluator":"Technical Evaluator","Executive Sponsor":"Executive Sponsor","Influencer":"Influencer","Other":"Other"},"layouts_dom":{"Standard":"Proposal","Invoice":"Invoice","Terms":"Payment Terms"},"bug_resolution_default_key":"","bug_resolution_dom":{"":"","Accepted":"Accepted","Duplicate":"Duplicate","Fixed":"Fixed","Out of Date":"Out of Date","Invalid":"Invalid","Later":"Later"},"bug_status_default_key":"New","bug_status_dom":{"New":"New","Assigned":"Assigned","Closed":"Closed","Pending":"Pending","Rejected":"Rejected"},"bug_type_default_key":"Bug","bug_type_dom":{"Defect":"Defect","Feature":"Feature"},"source_dom":{"":"","Internal":"Internal","Forum":"Forum","Web":"Web","Email":"Email"},"product_category_default_key":"","product_category_dom":{"":"","Accounts":"Accounts","Activities":"Activities","Bug Tracker":"Bug Tracker","Calendar":"Calendar","Calls":"Calls","Campaigns":"Campaigns","Cases":"Cases","Contacts":"Contacts","Currencies":"Currencies","Dashboard":"Dashboard","Documents":"Documents","Emails":"Emails","Feeds":"Feeds","Forecasts":"Forecasts","Help":"Help","Home":"Home","Leads":"Leads","Meetings":"Meetings","Notes":"Notes","Opportunities":"Opportunities","Outlook Plugin":"Outlook Plugin","Product Catalog":"Product Catalog","Products":"Products","Projects":"Projects","Quotes":"Quotes","Releases":"Releases","SoftwareProducts":"Software Products","RSS":"RSS","Studio":"Studio","Upgrade":"Upgrade","Users":"Users"},"campaign_status_dom":{"":"","Planning":"Planning","Active":"Active","Inactive":"Inactive","Complete":"Complete","In Queue":"In Queue","Sending":"Sending"},"campaign_type_dom":{"":"","Telesales":"Telesales","Mail":"Mail","Email":"Email","Print":"Print","Web":"Web","Radio":"Radio","Television":"Television","NewsLetter":"Newsletter"},"newsletter_frequency_dom":{"":"","Weekly":"Weekly","Monthly":"Monthly","Quarterly":"Quarterly","Annually":"Annually"},"notifymail_sendtype":{"sendmail":"sendmail","SMTP":"SMTP"},"dom_timezones":{"-12":"(GMT - 12) International Date Line West","-11":"(GMT - 11) Midway Island, Samoa","-10":"(GMT - 10) Hawaii","-9":"(GMT - 9) Alaska","-8":"(GMT - 8) San Francisco","-7":"(GMT - 7) Phoenix","-6":"(GMT - 6) Saskatchewan","-5":"(GMT - 5) New York","-4":"(GMT - 4) Santiago","-3":"(GMT - 3) Buenos Aires","-2":"(GMT - 2) Mid-Atlantic","-1":"(GMT - 1) Azores","0":"(GMT)","1":"(GMT + 1) Madrid","2":"(GMT + 2) Athens","3":"(GMT + 3) Moscow","4":"(GMT + 4) Kabul","5":"(GMT + 5) Ekaterinburg","6":"(GMT + 6) Astana","7":"(GMT + 7) Bangkok","8":"(GMT + 8) Perth","9":"(GMT + 9) Seol","10":"(GMT + 10) Brisbane","11":"(GMT + 11) Solomone Is.","12":"(GMT + 12) Auckland"},"dom_cal_month_long":["","January","February","March","April","May","June","July","August","September","October","November","December"],"dom_meridiem_lowercase":{"am":"am","pm":"pm"},"dom_meridiem_uppercase":{"AM":"AM","PM":"PM"},"dom_report_types":{"tabular":"Rows and Columns","summary":"Summation","detailed_summary":"Summation with details"},"dom_email_types":{"":"","received":"Received","sent":"Sent","out":"Sent","archived":"Archived","draft":"Draft","inbound":"Inbound"},"dom_email_status":{"archived":"Archived","closed":"Closed","draft":"In Draft","read":"Read","replied":"Replied","sent":"Sent","send_error":"Send Error","unread":"Unread"},"dom_email_server_type":{"":"--None--","imap":"IMAP","pop3":"POP3"},"dom_mailbox_type":{"":"","bug":"Create Bug","support":"Create Case","bounce":"Bounce Handling"},"dom_email_distribution":{"":"--None--","direct":"Direct Assign","roundRobin":"Round-Robin","leastBusy":"Least-Busy"},"dom_email_errors":{"1":"Only select one user when Direct Assigning items.","2":"You must assign Only Checked Items when Direct Assigning items."},"dom_email_bool":{"bool_true":"Yes","bool_false":"No"},"dom_int_bool":{"1":"Yes","0":"No"},"dom_switch_bool":{"on":"Yes","off":"No","":"No"},"dom_email_link_type":{"":"System Default Mail Client","sugar":"info@hand Mail Client","mailto":"External Mail Client"},"dom_email_editor_option":{"":"Default Email Format","html":"HTML Email","plain":"Plain Text Email"},"schedulers_times_dom":{"not run":"Past Run Time, Not Executed","ready":"Ready","in progress":"In Progress","failed":"Failed","completed":"Completed","no curl":"Not Run: No cURL available"},"forecast_schedule_status_dom":{"Active":"Active","Inactive":"Inactive"},"forecast_type_dom":{"personal":"Personal","team_individual":"My Team Individual Forecast","team_rollup":"My Team Roll-Up Forecast"},"document_category_dom":{"":"","Marketing":"Marketing","Knowledge Base":"Knowledge Base","Sales":"Sales"},"document_subcategory_dom":{"":"","Marketing Collateral":"Marketing Collateral","Product Brochures":"Product Brochures","FAQ":"FAQ"},"document_status_dom":{"Draft":"Draft","To Be Approved":"To Be Approved","Approved":"Approved","Archived":"Archived"},"document_template_type_dom":{"":"","mailmerge":"Mail Merge","eula":"EULA","nda":"NDA","license":"License Agreement"},"dom_meeting_accept_options":{"accept":"Accept","decline":"Decline","tentative":"Tentative"},"dom_meeting_accept_status":{"accept":"Accepted","decline":"Declined","tentative":"Tentative","none":"None"},"prospect_list_type_dom":{"default":"Default","seed":"Seed","exempt_domain":"Suppression List - By Domain","exempt_address":"Suppression List - By Email Address","exempt":"Suppression List - By Id","test":"Test"},"email_marketing_status_dom":{"":"","active":"Active","inactive":"Inactive"},"campainglog_activity_type_dom":{"":"","targeted":"Message Sent\/Attempted","send error":"Bounced Messages,Other","invalid email":"Bounced Messages,Invalid Email","link":"Click-thru Link","viewed":"Viewed Message","removed":"Opted Out","lead":"Leads Created","contact":"Contacts Created"},"campainglog_target_type_dom":{"Contacts":"Contacts","Users":"Users","Prospects":"Targets","Leads":"Leads"},"merge_operators_dom":{"like":"Contains","exact":"Exactly","start":"Starts With"},"custom_fields_merge_dup_dom":["Disabled","Enabled"],"navigation_paradigms":{"m":"Modules","gm":"Grouped Modules"},"reportModuleList":{"EventSessions":"Marketing Event Sessions"},"ACLmoduleList":{"ReportData":"Report Data","Payments":"Payments"},"resource_type_dom":{"Television":"Television","DVD":"DVD","VCR":"VCR","Projector":"Projector","Projection Screen":"Projection Screen","Notebook PC":"Notebook PC","Desktop PC":"Desktop PC","Conference Phone":"Conference Phone","Telephone Bridge":"Telephone Bridge","Meeting Room":"Meeting Room"},"task_priority_default":"P1","task_priority_dom":{"P2":"High","P1":"Medium","P0":"Low"},"project_task_priority_options":{"P2":"High","P1":"Medium","P0":"Low"},"project_task_dependency_type":{"FTS":"Finish To Start","STS":"Start To Start","FTF":"Finish To Finish"},"bug_priority_default_key":"P1","bug_priority_dom":{"P3":"Urgent","P2":"High","P1":"Medium","P0":"Low"},"copy_address_source":{"billing":"Billing Address","shipping":"Shipping Address"},"project_type_dom":{"":"","Bid Development":"Bid Development","Internal R&D":"Internal R&D","Services Delivery":"Services Delivery","Sub-Contract":"Sub-Contract"},"project_relationship_type_default_key":"Project Manager","project_relationship_type_dom":{"":"","Executive Sponsor":"Executive Sponsor","Project Executive":"Project Executive","Project Manager":"Project Manager","Technical Lead":"Technical Lead","Business Lead":"Business Lead","Technical Team Member":"Technical Team Member","Business Team Member":"Business Team Member","Other":"Other"},"project_status_dom":{"Active - Starting Soon":"Active - Starting Soon","Active - In Progress":"Active - In Progress","Closed - Complete":"Closed - Complete","Closed - Not Pursued":"Closed - Not Pursued","Closed - Terminated":"Closed - Terminated"},"task_effort_unit_dom":{"":"","minutes":"minutes","hours":"hours","days":"days"},"departments_dom":{"":"","Administration":"Administration","Corporate Office":"Corporate Office","Customer Service":"Customer Service","Finance":"Finance","Human Resources":"Human Resources","Manufacturing":"Manufacturing","Marketing":"Marketing","MIS":"MIS","R&D":"R&D","Sales":"Sales","Shipping\/Receiving":"Shipping\/Receiving"},"sex_dom":{"":"","m":"Male","f":"Female"},"salary_period_dom":{"":"","per hour":"per hour","per day":"per day","per week":"per week","per month":"per month","per year":"per year"},"education_dom":{"":"","High School":"High School Diploma","Technical College":"Technical College Diploma","Bachelor":"Bachelor's Degree","Masters":"Masters Degree","Doctorate":"Doctorate"},"dep_relationship_dom":{"":"","Husband":"Husband","Wife":"Wife","Son":"Son","Daughter":"Daughter","Father":"Father","Mother":"Mother","Sibling":"Sibling","Other Family":"Other Family","Other":"Other"},"opp_probability_dom":{"0":"0","10":"10","20":"20","25":"25","30":"30","40":"40","50":"50","65":"65","80":"80","90":"90","100":"100"},"asset_tax_class_dom":{"yes":"Taxable","no":"Non-taxable"},"prod_price_formula_dom":{"Fixed Price":"Editable Price","Profit Margin":"Profit Margin","Markup Over Cost":"Markup Over Cost","Discount from List":"Discount from List","Same As List":"Same As List"},"prod_support_price_formula_dom":{"Fixed Price":"Editable Price","Profit Margin":"Profit Margin","Markup Over Cost":"Markup Over Cost","Discount from List":"Discount from List","Same As List":"Same As List","Percent of Selling Price":"Percent of Selling Price"},"yes_no_dom":{"yes":"Yes","no":"No"},"email_isread_dom":{"":"","read":"Read","unread":"Unread"},"contract_status_dom":{"yes":"Active","no":"Inactive"},"asset_account_role_dom":{"":"","purchaser":"Purchaser","publisher":"Publisher","distributor":"Distributor"},"contact_category_dom":{"Business":"Business","Company Staff":"Company Staff","Customers":"Customers","Friends and Family":"Friends &amp; Family","Partners":"Partners","Personal Services":"Personal Services","Press and Analysts":"Press &amp; Analysts","Professional Advisors":"Professional Advisors","Restaurants":"Restaurants","Suppliers":"Suppliers"},"contact_business_role_dom":{"":"","CEO":"CEO","MIS":"MIS","CFO":"CFO","Sales":"Sales","Admin":"Admin"},"terms_dom":{"COD":"COD","Due on Receipt":"Due on Receipt","Net 7 Days":"Net 7 Days","Net 15 Days":"Net 15 Days","Net 30 Days":"Net 30 Days","Net 45 Days":"Net 45 Days","Net 60 Days":"Net 60 Days"},"quote_show_components_dom":{"":"","names":"Details","all":"Details &amp; Prices"},"quote_approval_status":{"":"","Submitted":"Submitted","Approved":"Approved","Not Approved":"Not Approved"},"so_stage_dom":{"Ordered":"Ordered","In Manufacturing":"In Manufacturing","Partially Shipped and Invoiced":"Partially Shipped &amp; Invoiced","Closed - Shipped and Invoiced":"Closed - Shipped &amp; Invoiced"},"po_status_dom":{"Draft":"Draft","Ordered":"Ordered","Partially Received":"Partial Shipment","Received":"Received"},"receiving_status_dom":{"Pending":"Pending","Partially Received":"Partial Shipment","Received":"Received"},"shipping_status_dom":{"In Preparation":"In Preparation","Shipped":"Shipped"},"shipping_stage_dom":{"Pending":"Pending","Partially Shipped":"Partially Shipped","Shipped":"Shipped"},"timesheet_period_dom":{"1":"Weekly","2":"Bi-Weekly","3":"Semi-Monthly","4":"Monthly"},"timesheet_status_dom":{"draft":"Draft","submitted":"Submitted For Approval","approved":"Approved","rejected":"Rejected"},"standard_custom_dom":["Standard","Custom"],"report_run_method_dom":{"manual":"Manual","interactive":"Interactive","scheduled":"Scheduled"},"interval_units_dom":{"seconds":"seconds","minutes":"minutes","hours":"hours","days":"days","weeks":"weeks","months":"months","quarters":"quarters","years":"years"},"interval_unit_dom":{"seconds":"second","minutes":"minute","hours":"hour","days":"day","weeks":"week","months":"month","quarters":"quarter","years":"year"},"schedule_type_dom":{"emailmandelivery":"Send Campaign Emails","emailimport":"Retrieve User Email","email_cleanup":"Cleanup Emails","runreports":"Run Scheduled Reports","email_expired_subcontracts":"Send Expiring Subcontracts List Email","email_overdue_project_tasks":"Send Overdue Project Tasks List Email","runforecasts":"Update Forecast Periods","prunedatabase":"Prune Database","processbounces":"Process Bounced Campaign Emails","update_rates":"Update Rates","add_recurring":"Recurring items","activities_notification":"Send Activities Notifications","event_reminders":"Send Event Reminders","process_workflow":"Process Workflow","google_sync":"Sync Google Calendar Events","retrieve_stock_quotes":"Retrieve Current Stock Quotes","sync_google_docs":"Synchronize Google Docs","sync_google_contacts":"Synchronize Google Contacts","close_vacations":"Close Past Vacations"},"payment_type_dom":{"":"","Cash":"Cash","Check":"Check","Wire Transfer":"Wire Transfer","Money Order":"Money Order","Bank Draft":"Bank Draft","PayPal":"PayPal","Western Union":"Western Union","Credit Note":"Credit Note","Credit Card":"Credit Card"},"payment_direction_dom":{"incoming":"Incoming","outgoing":"Outgoing"},"simple_status_dom":{"Active":"Active","Inactive":"Inactive"},"paper_size_default_key":"Letter","paper_size_dom":{"A3":"A3","A4":"A4","B4":"B4","B5":"B5","Letter":"Letter","Legal":"Legal"},"serial_number_item_dom":{"":"","System":"System","OS":"O\/S Version","Firmware":"Firmware Revision"},"report_notify_format_dom":{"html":"HTML","pdf":"PDF","csv":"CSV","tsv":"TSV","scsv":"SCSV","link":"Link Only"},"license_type_dom":{"initial":"Initial","extension":"Extension","renewal":"Renewal","trial":"Trial"},"case_category_default_key":"","case_category_dom":{"":"","Documentation":"Documentation","Office Supplies":"Office Supplies","PC Hardware":"PC Hardware","Server Hardware":"Server Hardware","Networking":"Networking","Client Software":"Client Software","Server Software":"Server Software","User Training":"User Training","Website":"Website"},"case_type_default_key":"","case_type_dom":{"":"","Internal Development":"Internal Development","Internal Maintenance":"Internal Maintenance","Internal Support":"Internal Support","Internal Training":"Internal Training","Contract Development":"Contract Development","Contract Maintenance":"Contract Maintenance","Contract Support":"Contract Support","Contract Training":"Contract Training"},"case_search_what_dom":{"any":"any word","all":"all words","exact":"exact match"},"forecast_category_dom":{"Actual":"Actual","Omitted":"Omitted","Pipeline":"Pipeline","Best Case":"Best Case","Commit":"Commit","Closed":"Closed"},"sales_forecast_dom":{"Closed Won":"Actual","Closed Lost":"Omitted","Prospecting":"Pipeline","Qualification":"Pipeline","Needs Analysis":"Pipeline","Value Proposition":"Pipeline","Id. Decision Makers":"Pipeline","Perception Analysis":"Best Case","Proposal\/Price Quote":"Best Case","Negotiation\/Review":"Commit","Awaiting Paperwork":"Commit"},"forecast_period_dom":{"Monthly":"Monthly","Quarterly":"Quarterly"},"tax_compounding_dom":{"":"","compounded":"Compounded (eg. Quebec PST)"},"discount_type_dom":{"percentage":"Price Percentage","fixed":"Fixed Amount"},"assembly_discount_type_dom":{"":"","std":"Standard Discount","percentage":"Price Percentage","fixed":"Fixed Amount"},"quote_group_type_dom":{"products":"Products","support":"Support","service":"Services"},"quote_pricing_method_dom":{"":"Editable Prices","margin":"Profit Margin","markup":"Markup Over Cost","discount":"Discount From List","list":"Same As List"},"quote_line_pricing_method_dom":{"inherit":"Inherit From Group","":"Editable Price","margin":"Profit Margin","markup":"Markup Over Cost","discount":"Discount From List","stddiscount":"Standard Discount","list":"Same As List"},"price_adjustment_type_dom":{"StandardTax":"Standard Tax","CompoundedTax":"Compounded Tax","TaxedShipping":"Taxed Shipping","UntaxedShipping":"Untaxed Shipping","StandardDiscount":"Standard Discount"},"quotation_modes":{"":"No Limitations","catalog_only":"Limit user to quoting only products from the catalog","standard_prices":"Limit user to quoting only products from the catalog, and only at standard pricing"},"email_reminder_time_options":{"900":"15 minutes prior","1800":"30 minutes prior","3600":"1 hour prior","7200":"2 hours prior","10800":"3 hours prior","21600":"6 hours prior","86400":"1 day prior"},"booked_hours_status_dom":{"draft":"Tentative","pending":"Not Yet Approved","submitted":"Submitted","approved":"Approved","rejected":"Rejected"},"booked_hours_related_dom":{"":"","Cases":"Case","ProjectTask":"Project Task"},"booked_hours_billing_status_dom":{"":"","billed":"Billed","notbilled":"Not Billed"},"booking_classes_dom":{"billable-work":"Billable Work","nonbill-work":"Non-Billable Work"},"address_format_names_dom":{"Britain":"Britain\/US\/Canada","France":"Europe 1 (Contact first)","Germany":"Europe 2 (Account first)","Japan":"Japan","Switzerland":"Switzerland"},"business_model_dom":{"B2B":"Business to Business","B2C":"Business to Consumer"},"event_format_dom":{"":"","Teleseminar":"Teleseminar","Seminar":"Seminar","Program":"Program","Live Event":"Live Event","Material":"Material"},"event_color_dom":{"":"","red":"Red","green":"Green","blue":"Blue","magenta":"Magenta","cyan":"Cyan","brown":"Brown","violet":"Violet","chocolate":"Chocolate","crimson":"Crimson","firebrick":"FireBrick","fuchsia":"Fuchsia","indigo":"Indigo","orangered":"OrangeRed","yellowgreen":"YellowGreen"},"temperature_dom":{"":"","Smoking":"Smoking","Hot":"Hot","Warm":"Warm","Cold":"Cold"},"quote_add_comment_options":{"":"Do not add part descriptions","products":"Only add product descriptions","assemblies":"Only add assembly descriptions","all":"Add all part descriptions"},"track_inventory_dom":{"untracked":"Not Tracked \/ Intangible","manual":"Manually Updated","semiauto":"Automatically Adjusted"},"booking_location_dom":{"":"","onsite":"Onsite","offsite":"Offsite"},"booking_seniority_dom":{"":"","junior":"Junior","intermediate":"Intermediate","senior":"Senior"},"booking_duration_dom":{"":"","hour":"Hour","day":"Day"},"leave_status_dom":{"planned":"Planned","approved":"Approved","not_approved":"Not Approved","cancelled":"Cancelled","days_taken":"Days Taken"},"leave_type_dom":{"vacation":"Vacation","sick":"Sick Days"},"country_codes":{"AF":"Afghanistan","AL":"Albania","DZ":"Algeria","AS":"American Samoa","AD":"Andorra","AO":"Angola","AI":"Anguilla","AQ":"Antarctica","AG":"Barbuda","AR":"Argentina","AM":"Armenia","AW":"Aruba","AU":"Australia","AT":"Austria","AZ":"Azerbaijan","BS":"Bahamas","BH":"Bahrain","BD":"Bangladesh","BB":"Barbados","BY":"Belarus","BE":"Belgium","BZ":"Belize","BJ":"Benin","BM":"Bermuda","BT":"Bhutan","BO":"Bolivia","AN":"St. Maarten","BA":"Bosnia-Herzegovina","BW":"Botswana","BV":"Bouvet Island","BR":"Brazil","IO":"British Indian Ocean Territory","VG":"Tortola Island","BN":"Brunei","BG":"Bulgaria","BF":"Burkina Faso","BI":"Burundi","KH":"Cambodia","CM":"Cameroon","CA":"Canada","ES":"Spain","CV":"Cape Verde","KY":"Grand Cayman","CF":"Central African Republic","TD":"Chad","GB":"Wales","CL":"Chile","CN":"China","CX":"Christmas Island","CC":"Cocos (Keeling) Islands","CO":"Colombia","KM":"Comoros","CG":"Congo","CD":"Congo Dem. Rep. Of","CK":"Cook Islands","CR":"Costa Rica","HR":"Croatia","CU":"Cuba","CY":"Cyprus","CZ":"Czech Republic","DK":"Denmark","DJ":"Djibouti","DM":"Dominica","DO":"Dominican Republic","TL":"East Timor","EC":"Ecuador","EG":"Egypt","SV":"El Salvador","GQ":"Equatorial Guinea","ER":"Eritrea","EE":"Estonia","ET":"Ethiopia","FO":"Faeroe Islands","FK":"Falkland Islands","FJ":"Fiji","FI":"Finland","FR":"France","GF":"French Guiana","PF":"Tahiti","TF":"French Southern Territories","GA":"Gabon","GM":"Gambia","GE":"Georgia","DE":"Germany","GH":"Ghana","GI":"Gibraltar","GR":"Greece","GL":"Greenland","GD":"Grenada","GP":"St. Barthelemy","GU":"Guam","GT":"Guatemala","GW":"Guinea Bissau","GN":"Guinea","GY":"Guyana","HT":"Haiti","HM":"Heard & McDonald Islands","NL":"Netherlands","HN":"Honduras","HK":"Hong Kong","HU":"Hungary","IS":"Iceland","IN":"India","ID":"Indonesia","IR":"Iran","IQ":"Iraq","IE":"Ireland","IL":"Israel","IT":"Vatican City","CI":"Ivory Coast","JM":"Jamaica","JP":"Japan","JO":"Jordan","KZ":"Kazakhstan","KE":"Kenya","KI":"Kiribati","KW":"Kuwait","KG":"Kyrgyzstan","LA":"Laos","LV":"Latvia","LB":"Lebanon","LS":"Lesotho","LR":"Liberia","LY":"Libya","LI":"Liechtenstein","LT":"Lithuania","LU":"Luxembourg","MO":"Macau","MK":"Macedonia","MG":"Madagascar","MW":"Malawi","MY":"Malaysia","MV":"Maldives","ML":"Mali","MT":"Malta","MH":"Marshall Islands","MQ":"Martinique","MR":"Mauritania","MU":"Mauritius","YT":"Mayotte","MX":"Mexico","FM":"Micronesia","MD":"Moldova","MC":"Monaco","MN":"Mongolia","MS":"Montserrat","MA":"Morocco","MZ":"Mozambique","MM":"Myanmar \/ Burma","NA":"Nambia","NR":"Nauru","NP":"Nepal","NC":"New Caledonia","NZ":"New Zealand","NI":"Nicaragua","NG":"Nigeria","NE":"Niger","NU":"Niue","NF":"Norfolk Island","MP":"Tinian","KP":"North Korea","NO":"Norway","OM":"Oman","PK":"Pakistan","PW":"Palau","PS":"Palestine","PA":"Panama","PG":"Papua New Guinea","PY":"Paraguay","PE":"Peru","PH":"Philippines","PN":"Pitcairn","PL":"Poland","PT":"Portugal","PR":"Puerto Rico","QA":"Qatar","RE":"Reunion","RO":"Romania","RU":"Russia","RW":"Rwanda","WS":"Samoa","ST":"Sao Tome & Principe","SA":"Saudi Arabia","SN":"Senegal","CS":"Serbia & Montenegro","SC":"Seychelles","SL":"Sierra Leone","SG":"Singapore","SK":"Slovak Republic","SI":"Slovenia","SB":"Solomon Islands","SO":"Somalia","ZA":"South Africa","GS":"South Georgia & South Sandwich Islands","KR":"South Korea","LK":"Sri Lanka","KN":"St. Kitts and Nevis","VI":"U.S. Virgin Islands","SH":"St. Helena","LC":"St. Lucia","PM":"St. Pierre","VC":"Union Island","SD":"Sudan","SR":"Suriname","SJ":"Svalbard & Jan Mayen Is","SZ":"Swaziland","SE":"Sweden","CH":"Switzerland","SY":"Syria","TW":"Taiwan","TJ":"Tajikistan","TZ":"Tanzania","TH":"Thailand","TG":"Togo","TK":"Tokelau","TO":"Tonga","TT":"Trinidad & Tobago","TN":"Tunisia","TR":"Turkey","TM":"Turkmenistan","TC":"Turks & Caicos Islands","TV":"Tuvalu","UG":"Uganda","UA":"Ukraine","AE":"United Arab Emirates","US":"United States","UY":"Uruguay","UM":"U.S. Minor Outlying Islands","UZ":"Uzbekistan","VU":"Vanuatu","VE":"Venezuela","VN":"Vietnam","WF":"Wallis & Futuna Islands","EH":"Western Sahara","YE":"Yemen","ZM":"Zambia","ZW":"Zimbabwe"},"debit_credit_dom":{"debit":"Debit","credit":"Credit"},"envelope_window_position_dom":{"left":"Left","right":"Right"},"relative_time_dom":{"yesterday":"Yesterday","yesterday_time":"Yesterday, {TIME}","today":"Today","today_time":"Today, {TIME}","tomorrow":"Tomorrow","tomorrow_time":"Tomorrow, {TIME}","weekday":"{WDAY}","weekday_time":"{WDAY}, {TIME}","n_second_ago":"One second ago","n_seconds_ago":"{N} seconds ago","n_minute_ago":"One minute ago","n_minutes_ago":"{N} minutes ago","n_hour_ago":"An hour ago","n_hours_ago":"{N} hours ago","n_days_ago":"{N} days ago","n_days_ago_time":"{N} days ago, {TIME}","date_time":"{DATE}, {TIME}"},"google_calendar_sync_dom":{"":"- Sync Disabled -","to_iah":"(One-Way) Bring Events In To Info@Hand","to_google":"(One-Way) Send Events Out To Google","both":"Two-Way Sync"},"google_docs_sync_dom":{"":"- Sync Disabled -","to_iah":"(One-Way) Bring Documents In To Info@Hand","to_google":"(One-Way) Send Documents Out To Google","both":"Two-Way Sync"},"email_import_since_dom":{"prev_n_days":"Previous {N} days","prev_n_months":"Previous {N} months","prev_n_years":"Previous {N} years","all":"All messages"},"module_types_dom":{"theme":"Theme","langpack":"Language","module":"Module","patch":"Patch"},"log_level_dom":{"all":"Everything (verbose)","debug":"Debug level","info":"Informational","warn":"Warnings and errors","error":"All errors","fatal":"Only fatal errors","off":"Off (logging disabled)"},"activities_status_dom":{"Completed":"Completed","Deferred":"Deferred","Held":"Held","In Progress":"In Progress","Not Held":"Not Held","Not Started":"Not Started","Pending Input":"Pending Input","Planned":"Planned"},"report_run_interval_unit_dom":{"hours":"hours","days":"days","weeks":"weeks","months":"months","quarters":"quarters","years":"years"},"schedule_run_interval_unit_dom":{"minutes":"minutes","hours":"hours","days":"days","weeks":"weeks","months":"months","quarters":"quarters","years":"years"},"document_filetype_dom":{"Acrobat PDF":"Acrobat PDF","Audio":"Audio","Compressed":"Compressed","HTML":"HTML","Image":"Image","Spreadsheet":"MS Excel","Presentation":"MS PowerPoint","Project":"MS Project","Chart":"MS Visio","Document":"MS Word","Text":"Text","Video":"Video"},"pdf_font_names_dom":{"freesans":"FreeSans (General, Embedded)","freeserif":"FreeSerif (General, Embedded)","freemono":"FreeMono (Latin only, Embedded)","vera":"Vera Sans (Latin only, Embedded)","verase":"Vera Serif (Latin only, Embedded)","veramo":"Vera Mono (Latin only, Embedded)","courier":"Courier (Latin only, Standard)","helvetica":"Helvetica (Latin only, Standard)","times":"Times (Latin only, Standard)","msungstdlight":"MSung Light (Trad. Chinese)","stsongstdlight":"STSong Light (Simp. Chinese)","hysmyeongjostdmedium":"MyungJo Medium (Korean)","kozminproregular":"Kozuka Mincho Pro (Japanese, Serif)","kozgopromedium":"Kozuka Gothic Pro (Japanese, Sans)","almohanad":"AlMohanad (Arabic)"},"pdf_font_names_default_key":"freesans"});