var ROW_SPACER='\u00A0\u00A0\u00A0\u00A0';updateRequired=false;queueProcessing=false;currentSearchId=0;textInput=null;rowCount=35;menuTable=null;menuTableRows=new Array();previousQuery=null;var targetDoc=null;var targetWin=null;function setupSearchField(win)
{targetWin=win;targetDoc=win.document;textInput=targetDoc.getElementById('gaSearch');textInput.onkeydown=keydown;textInput.onkeyup=keyup;textInput.onfocus=processFocus;textInput.onblur=processBlur;try
{}catch(e)
{}menuTable=targetDoc.createElement('table');menuTable.className='gaMenu';menuTable.style.display='none';menuTable.cellSpacing=0;menuTable.cellPadding=0;menuTable.border=0;menuTable.style.position='absolute';menuTable.style.zIndex=100;for(var i=0;i<rowCount;i++)
{var row=menuTable.insertRow(i);var td=targetDoc.createElement('td');td.align='left';td.idx=i;td.onmousedown=goToResource;row.appendChild(td);td.appendChild(targetDoc.createTextNode('\u00A0'));menuTableRows[i]=td;}targetDoc.body.appendChild(menuTable);}function gotapi_prepareData(data)
{for(var i=0;i<data.length-1;i++)
{var offset=data[i].p;data[i].p=data[i-offset];}}function removeAllChilds(argNode)
{while(argNode.firstChild)
{argNode.removeChild(argNode.firstChild);}}function processFocus(evt)
{var value=textInput.value;if(value=='')
{setMenuVisible(false);return;}if(updateRequired) {update();}setMenuVisible(true);}function processBlur(evt)
{setMenuVisible(false);}function Module(id,path,title,url,popup)
{this.id=id;this.path=path;this.title=title;this.data=null;this.url=url;this.popup=popup;}function keyup(evt)
{var key=evt?evt.keyCode:targetWin.event.keyCode;if(key !=13 && key !=255 && key !=40 && key !=38)
{update();return false;}}function keydown(evt)
{var key=evt?evt.keyCode:targetWin.event.keyCode;if(key==13)
{showRow(selectedRow,false);var isNetscape=navigator.appName.toLowerCase().indexOf('netscape') >=0;if(isNetscape)
{if (evt.preventDefault) evt.preventDefault();if (evt.returnValue) evt.returnValue=false;if (evt.stopPropagation) evt.stopPropagation();}return false;}else if(key==40)
{selectRow(selectedRow+1,+1);setMenuVisible(true);}else if(key==38)
{selectRow(selectedRow-1,-1);setMenuVisible(true);}else if(key !=255)
{setMenuVisible(true);return true;}return false;}function selectRow(argRow,argDirection)
{var row=argRow;for(;;)
{if(row >=rowCount||row < 0||menuTableRows[row].style.display=='none')
{return;}if(menuTableRows[row].n)
{break;}row+=argDirection;}if(selectedRow >=0)
{var activeRow=menuTableRows[selectedRow];activeRow.className='gaRegularRow';}selectedRow=row;var activeRow=menuTableRows[selectedRow];activeRow.className='gaSelectedRow';}function search(argSearchId)
{if(currentSearchId !=argSearchId)
{return;}if(updateRequired)
previousQuery=null;var value=textInput.value;if(value=='')
{setMenuVisible(false);return;}if(value==previousQuery)
{return;}var extendPrevious=value.indexOf(previousQuery)==0;previousQuery=value;var keywords=value.split(/[ \t\.=<>\/\\\*_\(\):]+/);var res=new Array();for(var i=0;i<keywords.length;i++)
{res.push(new RegExp(keywords[i],"i"));}var startTime=new Date();var result=searchModules(argSearchId,res,keywords[0].toLowerCase());if(!result)
{return;}displayedRows=result;var endTime=new Date();var queryExecutionTime=endTime.getTime()-startTime.getTime();var startTime=new Date();var proceed=showResults(argSearchId,displayedRows);var endTime=new Date();var resultsRenderingTime=endTime.getTime()-startTime.getTime();if(! proceed)
{return;}selectedRow=-1;setMenuVisible(true);selectRow(0,+1);addStats('s',value+':'+queryExecutionTime+":"+resultsRenderingTime);}function searchModules(argSearchId,argRegList,argPriorityKey)
{var results=new Array();var klen=argRegList.length;for(var m=0;m<allModules.length;m++)
{var module=allModules[m];var moduleResults=new Array();var exactMatchEnd=0;var startsWithEnd=0;results.push(moduleResults);if(!module.data||!module.active) continue;var dx=module.data;if(! dx)
{continue;}var len=dx.length-1;for(var i=0;i<len;i++)
{if(exactMatchEnd+startsWithEnd > rowCount)
{break;}if(currentSearchId !=argSearchId)
{return null;}var item=dx[i];var n=dx[i].n;var matched=false;var re=null;for(var k=0;k<klen;k++)
{re=argRegList[k];if(re.test(n))
{matched=true;break;}}if(!matched)
{continue;}if(klen==1||matchItemParents(item,argRegList,re))
{if(n)
{var ln=n.toLowerCase();if(ln==argPriorityKey)
{moduleResults.splice(exactMatchEnd++,0,item);}else if(ln.indexOf(argPriorityKey)==0)
{moduleResults.splice(exactMatchEnd+startsWithEnd++,0,item);}else
{moduleResults.push(item);}}else
{moduleResults.push(item);}}}}return results;}function matchItemParents(argItem,argRes,argExcludingRe)
{var klen=argRes.length;var failed=false;for(var k=0;k<klen;k++)
{var re=argRes[k];if(re==argExcludingRe)
{continue;}var matched=false;var current=argItem;while(current)
{if(re.test(current.n))
{matched=true;break;}current=current.p;}if(!matched)
{failed=true;break;}}return !failed;}function showResults(argSearchId,argResults)
{var nonemptyModuleCount=0;for(var i=0;i<argResults.length;i++)
{if(argResults[i].length > 0) nonemptyModuleCount++;}var row=0;if(nonemptyModuleCount > 0)
{var fairCount=(rowCount - nonemptyModuleCount*2)/ nonemptyModuleCount;fairCount=Math.floor(fairCount);var leftoverCount=0;for(var i=0;i<argResults.length;i++)
{var r=argResults[i];var module=allModules[i];if(module.active && module.data && r.length > 0 && r.length < fairCount)
{leftoverCount+=fairCount - r.length;}}for(var m=0;m<allModules.length;m++)
{var module=allModules[m];if(!module.data||!module.active) continue;var moduleResults=argResults[m];if(! module.data||moduleResults.length <=0)
{continue;}if(row+1 >=rowCount) break;updateResultRow(row++,module.title,'gaHeaderRow',null);var i=0;for(;i<moduleResults.length;i++)
{if(i >=fairCount)
{if(leftoverCount==0) break;leftoverCount--;}var n=moduleResults[i];updateResultRow(row++,getResourceTitle(n),'gaRegularRow',n);}if(i < moduleResults.length)
{updateResultRow(row++,ROW_SPACER+'...','gaFooterRow',null);}}}if(row==0)
{updateResultRow(row++,'... No Matches Found ...','gaHeaderRow',null);addStats('s','-');}while(row < rowCount)
{var tableRow=menuTableRows[row++];tableRow.style.display='none';}return true;}function updateResultRow(argRowId,argTitle,argStyle,argNode)
{var row=menuTableRows[argRowId];row.firstChild.nodeValue=argTitle;row.className=argStyle;row.n=argNode;row.style.display='';}function getResourceTitle(argItem)
{var result='';var item=argItem;while(item && (item.p||item==argItem))
{name=getResourceLabel(item);result=name+(result==''?'':' \u00A0\u2192\u00A0 '+result);item=item.p;}return ROW_SPACER+result;}function getResourceLabel(argItem)
{var name=argItem.n;var type=argItem.t;if(type=='T') name='<'+name+' ... >';else if(type=='M') name=name+' (...)';else if(type=='C') name='class '+name;else if(type=='P');else if(type=='I') name='interface '+name;else if(type=='O');else if(type=='D') name=/*'\u00A7\u00A7 '+*/name;else if(type=='S') name='{'+name+':... }';else if(type=='V');return name;}function setMenuVisible(argVisible)
{if(queueProcessing) return;var visibleNow=menuTable.style.display=='';if(visibleNow==argVisible)
{return;}if(argVisible)
{showPopupNode(menuTable,textInput,3,0);}else
{menuTable.style.display='none';}if(window.opera)
{siteFrame.style.display=argVisible?'none':'';}}function showPopupNode(showNode,relativeNode,offsetX,offsetY)
{var nodeX=relativeNode.offsetLeft;var nodeY=relativeNode.offsetTop+relativeNode.offsetHeight;var node=relativeNode;while(node.offsetParent)
{node=node.offsetParent;nodeX+=node.offsetLeft;nodeY+=node.offsetTop;}showNode.style.left=(nodeX+offsetX)+'px';showNode.style.top=(nodeY+offsetY)+'px';showNode.style.display='';}function getResourceContext(argNode)
{var context=argNode.p
?getResourceContext(argNode.p)
:'';var c=argNode.c;if(c)
{c=uncompressValue(c,argNode);context=c.indexOf('http://')==0
?c:context+c;}return context;}function getResourceUrl(argNode)
{if(argNode.u||argNode.c)
{var ctx=getResourceContext(argNode);var u=argNode.u;if(! u)
{return ctx;}u=uncompressValue(u,argNode);return u.indexOf('http://')==0
?u
:ctx+u;}else
{return argNode.p?getResourceUrl(argNode.p):null;}}function uncompressValue(argValue,argNode)
{var idx=argValue.indexOf('`');if(idx < 0)
{return argValue;}var name=argNode.n;return argValue.substr(0,idx)+name+argValue.substr(idx+1);}function goToResource()
{showRow(this.idx,false)
}function showRow(argRow,argMenuVisible)
{if(argRow < 0)
{return;}setMenuVisible(argMenuVisible);var row=menuTableRows[argRow];showItem(row.n);}function update()
{if(queueProcessing) {if(textInput.value=='') {return;}updateWhenLoaded=true;var lbl=$('loading')
if(lbl) lbl.style.color='black';return;}++currentSearchId;setTimeout('search('+currentSearchId+')',1);}function showItem(argItem)
{var url=getResourceUrl(argItem);targetWin.location.href=url;}allModules=[new Module(0,gaMod,gaTitle,null,null)];function startModuleProcessing(name)
{setupSearchField(window);queueProcessing=true;}function finishModuleProcessing(name,data)
{gotapi_prepareData(data);allModules[0].data=data;allModules[0].active=true;queueProcessing=false;if(updateWhenLoaded) update();document.getElementById('gaWait').style.display='none';document.getElementById('gaInfo').style.display='';}function addStats(argType,argMsg)
{}function sendStats()
{}startModuleProcessing('module_gecko.js');var P = 'P';
var C = 'C';
var I = 'I';
var M = 'M';
var O = 'O';
var T = 'T';
var D = 'D';
var S = 'S';
var V = 'V';
var tmp = new Array(
{t:D,n:'Gecko DOM',u:'Main_Page',c:'http://developer.mozilla.org/en/docs/',p:1},
{t:D,n:'About',c:'Core_JavaScript_1.5_Reference:`',p:1},
{t:O,n:'Formatting Conventions',u:':Formatting_Conventions',p:1},
{t:D,n:'Comments',p:3},
{t:O,n:'comment',u:'http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Comments:comment',p:1},
{t:D,n:'Deprecated Features',u:'Core_JavaScript_1.5_Reference:Deprecated_Features',p:5},
{t:D,n:'DOM Objects',u:'Gecko_DOM_Reference',p:6},
{t:D,n:'CSS',p:1},
{t:O,n:'background',u:'http://developer.mozilla.org/en/docs/DOM:CSS:background',p:1},
{t:D,n:'cssRule',c:'DOM:`',p:3},
{t:O,n:'cssText',u:'.`',p:1},
{t:O,n:'parentStyleSheet',u:'.`',p:2},
{t:O,n:'selectorText',u:'.`',p:3},
{t:O,n:'style',u:'.`',p:4},
{t:D,n:'dispatchEvent example',u:'DOM:dispatchEvent_example',p:8},
{t:D,n:'document',c:'DOM:`',p:9},
{t:O,n:'alinkColor',u:'.`',p:1},
{t:O,n:'anchors',u:'.`',p:2},
{t:O,n:'applets',u:'.`',p:3},
{t:O,n:'bgColor',u:'.`',p:4},
{t:O,n:'body',u:'.`',p:5},
{t:O,n:'characterSet',u:'.`',p:6},
{t:O,n:'compatMode',u:'.`',p:7},
{t:O,n:'contentType',u:'.`',p:8},
{t:O,n:'cookie',u:'.`',p:9},
{t:O,n:'doctype',u:'.`',p:10},
{t:O,n:'documentElement',u:'.`',p:11},
{t:O,n:'domain',u:'.`',p:12},
{t:O,n:'embeds',u:'.`',p:13},
{t:O,n:'fgColor',u:'.`',p:14},
{t:O,n:'firstChild',u:'.`',p:15},
{t:O,n:'forms',u:'.`',p:16},
{t:O,n:'height',u:'.`',p:17},
{t:O,n:'images',u:'.`',p:18},
{t:O,n:'implementation',u:'.`',p:19},
{t:O,n:'lastModified',u:'.`',p:20},
{t:O,n:'linkColor',u:'.`',p:21},
{t:O,n:'links',u:'.`',p:22},
{t:O,n:'location',u:'.`',p:23},
{t:O,n:'namespaceURI',u:'.`',p:24},
{t:O,n:'plugins',u:'.`',p:25},
{t:O,n:'popupNode',u:'.`',p:26},
{t:O,n:'referrer',u:'.`',p:27},
{t:O,n:'styleSheets',u:'.`',p:28},
{t:O,n:'title',u:'.`',p:29},
{t:O,n:'tooltipNode',u:'.`',p:30},
{t:O,n:'URL',u:'.`',p:31},
{t:O,n:'vlinkColor',u:'.`',p:32},
{t:O,n:'width',u:'.`',p:33},
{t:M,n:'adoptNode',u:'.`',p:34},
{t:M,n:'clear',u:'.`',p:35},
{t:M,n:'close',u:'.`',p:36},
{t:M,n:'createAttribute',u:'.`',p:37},
{t:M,n:'createDocumentFragment',u:'.`',p:38},
{t:M,n:'createElement',u:'.`',p:39},
{t:M,n:'createElementNS',u:'.`',p:40},
{t:M,n:'createEvent',u:'.`',p:41},
{t:M,n:'createNSResolver',u:'.`',p:42},
{t:M,n:'createRange',u:'.`',p:43},
{t:M,n:'createTextNode',u:'.`',p:44},
{t:M,n:'createTreeWalker',u:'.`',p:45},
{t:M,n:'evaluate',u:'.`',p:46},
{t:M,n:'getElementById',u:'.`',p:47},
{t:M,n:'getElementsByClassName',u:'.`',p:48},
{t:M,n:'getElementsByName',u:'.`',p:49},
{t:M,n:'getElementsByTagName',u:'.`',p:50},
{t:M,n:'getElementsByTagNameNS',u:'.`',p:51},
{t:M,n:'importNode',u:'.`',p:52},
{t:M,n:'loadOverlay',u:'.`',p:53},
{t:M,n:'open',u:'.`',p:54},
{t:M,n:'write',u:'.`',p:55},
{t:M,n:'writeln',u:'.`',p:56},
{t:D,n:'element',c:'DOM:`',p:66},
{t:O,n:'attributes',u:'.`',p:1},
{t:O,n:'childNodes',u:'.`',p:2},
{t:O,n:'className',u:'.`',p:3},
{t:O,n:'clientHeight',u:'.`',p:4},
{t:O,n:'clientLeft',u:'.`',p:5},
{t:O,n:'clientTop',u:'.`',p:6},
{t:O,n:'clientWidth',u:'.`',p:7},
{t:O,n:'dir',u:'.`',p:8},
{t:O,n:'firstChild',u:'.`',p:9},
{t:O,n:'id',u:'.`',p:10},
{t:O,n:'innerHTML',u:'.`',p:11},
{t:O,n:'lang',u:'.`',p:12},
{t:O,n:'lastChild',u:'.`',p:13},
{t:O,n:'length',u:'.`',p:14},
{t:O,n:'localName',u:'.`',p:15},
{t:O,n:'name',u:'.`',p:16},
{t:O,n:'namespaceURI',u:'.`',p:17},
{t:O,n:'nextSibling',u:'.`',p:18},
{t:O,n:'nodeName',u:'.`',p:19},
{t:O,n:'nodeType',u:'.`',p:20},
{t:O,n:'nodeValue',u:'.`',p:21},
{t:O,n:'offsetHeight',u:'.`',p:22},
{t:O,n:'offsetLeft',u:'.`',p:23},
{t:O,n:'offsetParent',u:'.`',p:24},
{t:O,n:'offsetTop',u:'.`',p:25},
{t:O,n:'offsetWidth',u:'.`',p:26},
{t:O,n:'onblur',u:'.`',p:27},
{t:O,n:'onclick',u:'.`',p:28},
{t:O,n:'ondblclick',u:'.`',p:29},
{t:O,n:'onfocus',u:'.`',p:30},
{t:O,n:'onkeydown',u:'.`',p:31},
{t:O,n:'onkeypress',u:'.`',p:32},
{t:O,n:'onkeyup',u:'.`',p:33},
{t:O,n:'onmousedown',u:'.`',p:34},
{t:O,n:'onmousemove',u:'.`',p:35},
{t:O,n:'onmouseout',u:'.`',p:36},
{t:O,n:'onmouseover',u:'.`',p:37},
{t:O,n:'onmouseup',u:'.`',p:38},
{t:O,n:'onresize',u:'.`',p:39},
{t:O,n:'ownerDocument',u:'.`',p:40},
{t:O,n:'parentNode',u:'.`',p:41},
{t:O,n:'prefix',u:'.`',p:42},
{t:O,n:'previousSibling',u:'.`',p:43},
{t:O,n:'scrollHeight',u:'.`',p:44},
{t:O,n:'scrollLeft',u:'.`',p:45},
{t:O,n:'scrollTop',u:'.`',p:46},
{t:O,n:'scrollWidth',u:'.`',p:47},
{t:O,n:'style',u:'.`',p:48},
{t:O,n:'tabIndex',u:'.`',p:49},
{t:O,n:'tagName',u:'.`',p:50},
{t:O,n:'textContent',u:'.`',p:51},
{t:M,n:'addEventListener',u:'.`',p:52},
{t:M,n:'appendChild',u:'.`',p:53},
{t:M,n:'blur',u:'.`',p:54},
{t:M,n:'click',u:'.`',p:55},
{t:M,n:'cloneNode',u:'.`',p:56},
{t:M,n:'dispatchEvent',u:'.`',p:57},
{t:M,n:'focus',u:'.`',p:58},
{t:M,n:'getAttribute',u:'.`',p:59},
{t:M,n:'getAttributeNode',u:'.`',p:60},
{t:M,n:'getAttributeNodeNS',u:'.`',p:61},
{t:M,n:'getAttributeNS',u:'.`',p:62},
{t:M,n:'getElementsByTagName',u:'.`',p:63},
{t:M,n:'getElementsByTagNameNS',u:'.`',p:64},
{t:M,n:'hasAttribute',u:'.`',p:65},
{t:M,n:'hasAttributeNS',u:'.`',p:66},
{t:M,n:'hasAttributes',u:'.`',p:67},
{t:M,n:'hasChildNodes',u:'.`',p:68},
{t:M,n:'insertBefore',u:'.`',p:69},
{t:M,n:'item',u:'.`',p:70},
{t:M,n:'normalize',u:'.`',p:71},
{t:M,n:'onchange',u:'.`',p:72},
{t:M,n:'removeAttribute',u:'.`',p:73},
{t:M,n:'removeAttributeNode',u:'.`',p:74},
{t:M,n:'removeAttributeNS',u:'.`',p:75},
{t:M,n:'removeChild',u:'.`',p:76},
{t:M,n:'removeEventListener',u:'.`',p:77},
{t:M,n:'replaceChild',u:'.`',p:78},
{t:M,n:'scrollIntoView',u:'.`',p:79},
{t:M,n:'setAttribute',u:'.`',p:80},
{t:M,n:'setAttributeNode',u:'.`',p:81},
{t:M,n:'setAttributeNodeNS',u:'.`',p:82},
{t:M,n:'setAttributeNS',u:'.`',p:83},
{t:M,n:'supports',u:'.`',p:84},
{t:D,n:'event',c:'DOM:`',p:151},
{t:O,n:'altKey',u:'.`',p:1},
{t:O,n:'bubbles',u:'.`',p:2},
{t:O,n:'button',u:'.`',p:3},
{t:O,n:'cancelable',u:'.`',p:4},
{t:O,n:'cancelBubble',u:'.`',p:5},
{t:O,n:'charCode',u:'.`',p:6},
{t:O,n:'clientX',u:'.`',p:7},
{t:O,n:'clientY',u:'.`',p:8},
{t:O,n:'Comparison of Event Targets',u:':Comparison_of_Event_Targets',p:9},
{t:O,n:'ctrlKey',u:'.`',p:10},
{t:O,n:'currentTarget',u:'.`',p:11},
{t:O,n:'detail',u:'.`',p:12},
{t:O,n:'eventPhase',u:'.`',p:13},
{t:O,n:'explicitOriginalTarget',u:'.`',p:14},
{t:O,n:'isChar',u:'.`',p:15},
{t:O,n:'keyCode',u:'.`',p:16},
{t:O,n:'layerX',u:'.`',p:17},
{t:O,n:'layerY',u:'.`',p:18},
{t:O,n:'metaKey',u:'.`',p:19},
{t:O,n:'originalTarget',u:'.`',p:20},
{t:O,n:'pageX',u:'.`',p:21},
{t:O,n:'pageY',u:'.`',p:22},
{t:O,n:'relatedTarget',u:'.`',p:23},
{t:O,n:'screenX',u:'.`',p:24},
{t:O,n:'screenY',u:'.`',p:25},
{t:O,n:'shiftKey',u:'.`',p:26},
{t:O,n:'target',u:'.`',p:27},
{t:O,n:'timeStamp',u:'.`',p:28},
{t:O,n:'type',u:'.`',p:29},
{t:O,n:'view',u:'.`',p:30},
{t:O,n:'which',u:'.`',p:31},
{t:M,n:'initEvent',u:'.`',p:32},
{t:M,n:'initKeyEvent',u:'.`',p:33},
{t:M,n:'initMouseEvent',u:'.`',p:34},
{t:M,n:'initUIEvent',u:'.`',p:35},
{t:M,n:'preventDefault',u:'.`',p:36},
{t:M,n:'stopPropagation',u:'.`',p:37},
{t:D,n:'EventTarget',u:'DOM:`',p:189},
{t:D,n:'form',c:'DOM:`',p:190},
{t:O,n:'acceptCharset',u:'.`',p:1},
{t:O,n:'action',u:'.`',p:2},
{t:O,n:'elements',u:'.`',p:3},
{t:O,n:'encoding',u:'.`',p:4},
{t:O,n:'enctype',u:'.`',p:5},
{t:O,n:'length',u:'.`',p:6},
{t:O,n:'method',u:'.`',p:7},
{t:O,n:'name',u:'.`',p:8},
{t:O,n:'target',u:'.`',p:9},
{t:M,n:'reset',u:'.`',p:10},
{t:M,n:'submit',u:'.`',p:11},
{t:D,n:'Node',p:202},
{t:M,n:'compareDocumentPosition',u:'http://developer.mozilla.org/en/docs/DOM:Node.compareDocumentPosition',p:1},
{t:D,n:'range',c:'DOM:`',p:204},
{t:O,n:'collapsed',u:'.`',p:1},
{t:O,n:'commonAncestorContainer',u:'.`',p:2},
{t:O,n:'endContainer',u:'.`',p:3},
{t:O,n:'endOffset',u:'.`',p:4},
{t:O,n:'startContainer',u:'.`',p:5},
{t:O,n:'startOffset',u:'.`',p:6},
{t:M,n:'cloneContents',u:'.`',p:7},
{t:M,n:'cloneRange',u:'.`',p:8},
{t:M,n:'collapse',u:'.`',p:9},
{t:M,n:'compareBoundaryPoints',u:'.`',p:10},
{t:M,n:'compareNode',u:'.`',p:11},
{t:M,n:'comparePoint',u:'.`',p:12},
{t:M,n:'createContextualFragment',u:'.`',p:13},
{t:M,n:'deleteContents',u:'.`',p:14},
{t:M,n:'detach',u:'.`',p:15},
{t:M,n:'extractContents',u:'.`',p:16},
{t:M,n:'insertNode',u:'.`',p:17},
{t:M,n:'intersectsNode',u:'.`',p:18},
{t:M,n:'isPointInRange',u:'.`',p:19},
{t:M,n:'selectNode',u:'.`',p:20},
{t:M,n:'selectNodeContents',u:'.`',p:21},
{t:M,n:'setEnd',u:'.`',p:22},
{t:M,n:'setEndAfter',u:'.`',p:23},
{t:M,n:'setEndBefore',u:'.`',p:24},
{t:M,n:'setStart',u:'.`',p:25},
{t:M,n:'setStartAfter',u:'.`',p:26},
{t:M,n:'setStartBefore',u:'.`',p:27},
{t:M,n:'surroundContents',u:'.`',p:28},
{t:M,n:'toString',u:'.`',p:29},
{t:D,n:'Selection',c:'DOM:`',p:234},
{t:O,n:'anchorNode',u:':`',p:1},
{t:O,n:'anchorOffset',u:':`',p:2},
{t:O,n:'focusNode',u:':`',p:3},
{t:O,n:'focusOffset',u:':`',p:4},
{t:O,n:'isCollapsed',u:':`',p:5},
{t:O,n:'rangeCount',u:':`',p:6},
{t:M,n:'addRange',u:':`',p:7},
{t:M,n:'collapse',u:':`',p:8},
{t:M,n:'collapseToEnd',u:':`',p:9},
{t:M,n:'collapseToStart',u:':`',p:10},
{t:M,n:'containsNode',u:':`',p:11},
{t:M,n:'deleteFromDocument',u:':`',p:12},
{t:M,n:'extend',u:':`',p:13},
{t:M,n:'getRangeAt',u:':`',p:14},
{t:M,n:'removeAllRanges',u:':`',p:15},
{t:M,n:'removeRange',u:':`',p:16},
{t:M,n:'selectAllChildren',u:':`',p:17},
{t:M,n:'toString',u:':`',p:18},
{t:D,n:'Storage',u:'DOM:`',p:253},
{t:D,n:'style',c:'DOM:`',p:254},
{t:O,n:'media',u:'.`',p:1},
{t:O,n:'type',u:'.`',p:2},
{t:D,n:'stylesheet',c:'DOM:`',p:257},
{t:O,n:'cssRules',u:'.`',p:1},
{t:O,n:'disabled',u:'.`',p:2},
{t:O,n:'href',u:'.`',p:3},
{t:O,n:'media',u:'.`',p:4},
{t:O,n:'ownerNode',u:'.`',p:5},
{t:O,n:'ownerRule',u:'.`',p:6},
{t:O,n:'parentStyleSheet',u:'.`',p:7},
{t:O,n:'title',u:'.`',p:8},
{t:O,n:'type',u:'.`',p:9},
{t:M,n:'deleteRule',u:'.`',p:10},
{t:M,n:'insertRule',u:'.`',p:11},
{t:D,n:'table',c:'DOM:`',p:269},
{t:O,n:'align',u:'.`',p:1},
{t:O,n:'bgColor',u:'.`',p:2},
{t:O,n:'border',u:'.`',p:3},
{t:O,n:'caption',u:'.`',p:4},
{t:O,n:'cellPadding',u:'.`',p:5},
{t:O,n:'cellSpacing',u:'.`',p:6},
{t:O,n:'frame',u:'.`',p:7},
{t:O,n:'rows',u:'.`',p:8},
{t:O,n:'rules',u:'.`',p:9},
{t:O,n:'summary',u:'.`',p:10},
{t:O,n:'tBodies',u:'.`',p:11},
{t:O,n:'tFoot',u:'.`',p:12},
{t:O,n:'tHead',u:'.`',p:13},
{t:O,n:'width',u:'.`',p:14},
{t:M,n:'createCaption',u:'.`',p:15},
{t:M,n:'createTFoot',u:'.`',p:16},
{t:M,n:'createTHead',u:'.`',p:17},
{t:M,n:'deleteCaption',u:'.`',p:18},
{t:M,n:'deleteRow',u:'.`',p:19},
{t:M,n:'deleteTFoot',u:'.`',p:20},
{t:M,n:'deleteTHead',u:'.`',p:21},
{t:M,n:'insertRow',u:'.`',p:22},
{t:D,n:'treeWalker',c:'DOM:`',p:292},
{t:O,n:'filter',u:'.`',p:1},
{t:O,n:'root',u:'.`',p:2},
{t:O,n:'whatToShow',u:'.`',p:3},
{t:D,n:'window',c:'DOM:`',p:296},
{t:O,n:'closed',u:'.`',p:1},
{t:O,n:'content',u:'.`',p:2},
{t:O,n:'controllers',u:'.`',p:3},
{t:O,n:'crypto',u:'.`',p:4},
{t:O,n:'defaultStatus',u:'.`',p:5},
{t:O,n:'directories',u:'.`',p:6},
{t:O,n:'document',u:'.`',p:7},
{t:O,n:'frameElement',u:'.`',p:8},
{t:O,n:'frames',u:'.`',p:9},
{t:O,n:'history',u:'.`',p:10},
{t:O,n:'innerHeight',u:'.`',p:11},
{t:O,n:'innerWidth',u:'.`',p:12},
{t:O,n:'length',u:'.`',p:13},
{t:O,n:'location',u:'.`',p:14},
{t:O,n:'locationbar',u:'.`',p:15},
{t:O,n:'menubar',u:'.`',p:16},
{t:O,n:'name',u:'.`',p:17},
{t:O,n:'navigator',c:'.`',p:18},
{t:O,n:'appCodeName',u:'.`',p:1},
{t:O,n:'appName',u:'.`',p:2},
{t:O,n:'appVersion',u:'.`',p:3},
{t:O,n:'buildID',u:'.`',p:4},
{t:O,n:'cookieEnabled',u:'.`',p:5},
{t:O,n:'language',u:'.`',p:6},
{t:O,n:'mimeTypes',u:'.`',p:7},
{t:O,n:'onLine',u:'.`',p:8},
{t:O,n:'oscpu',u:'.`',p:9},
{t:O,n:'platform',u:'.`',p:10},
{t:O,n:'plugins',u:'.`',p:11},
{t:O,n:'product',u:'.`',p:12},
{t:O,n:'productSub',u:'.`',p:13},
{t:O,n:'userAgent',u:'.`',p:14},
{t:O,n:'vendor',u:'.`',p:15},
{t:O,n:'vendorSub',u:'.`',p:16},
{t:M,n:'javaEnabled',u:'.`',p:17},
{t:M,n:'registerContentHandler',u:'.`',p:18},
{t:O,n:'onabort',u:'.`',p:37},
{t:O,n:'onblur',u:'.`',p:38},
{t:O,n:'onchange',u:'.`',p:39},
{t:O,n:'onclick',u:'.`',p:40},
{t:O,n:'onclose',u:'.`',p:41},
{t:O,n:'ondragdrop',u:'.`',p:42},
{t:O,n:'onerror',u:'.`',p:43},
{t:O,n:'onfocus',u:'.`',p:44},
{t:O,n:'onkeydown',u:'.`',p:45},
{t:O,n:'onkeypress',u:'.`',p:46},
{t:O,n:'onkeyup',u:'.`',p:47},
{t:O,n:'onload',u:'.`',p:48},
{t:O,n:'onmousedown',u:'.`',p:49},
{t:O,n:'onmousemove',u:'.`',p:50},
{t:O,n:'onmouseout',u:'.`',p:51},
{t:O,n:'onmouseover',u:'.`',p:52},
{t:O,n:'onmouseup',u:'.`',p:53},
{t:O,n:'onpaint',u:'.`',p:54},
{t:O,n:'onreset',u:'.`',p:55},
{t:O,n:'onresize',u:'.`',p:56},
{t:O,n:'onscroll',u:'.`',p:57},
{t:O,n:'onselect',u:'.`',p:58},
{t:O,n:'onsubmit',u:'.`',p:59},
{t:O,n:'onunload',u:'.`',p:60},
{t:O,n:'opener',u:'.`',p:61},
{t:O,n:'outerHeight',u:'.`',p:62},
{t:O,n:'outerWidth',u:'.`',p:63},
{t:O,n:'pageXOffset',u:'.`',p:64},
{t:O,n:'pageYOffset',u:'.`',p:65},
{t:O,n:'parent',u:'.`',p:66},
{t:O,n:'personalbar',u:'.`',p:67},
{t:O,n:'pkcs11',u:'.`',p:68},
{t:O,n:'screen',c:'.`',p:69},
{t:O,n:'availHeight',u:'.`',p:1},
{t:O,n:'availLeft',u:'.`',p:2},
{t:O,n:'availTop',u:'.`',p:3},
{t:O,n:'availWidth',u:'.`',p:4},
{t:O,n:'colorDepth',u:'.`',p:5},
{t:O,n:'height',u:'.`',p:6},
{t:O,n:'left',u:'.`',p:7},
{t:O,n:'pixelDepth',u:'.`',p:8},
{t:O,n:'top',u:'.`',p:9},
{t:O,n:'width',u:'.`',p:10},
{t:O,n:'screenX',u:'.`',p:80},
{t:O,n:'screenY',u:'.`',p:81},
{t:O,n:'scrollbars',u:'.`',p:82},
{t:O,n:'scrollX',u:'.`',p:83},
{t:O,n:'scrollY',u:'.`',p:84},
{t:O,n:'self',u:'.`',p:85},
{t:O,n:'sidebar',u:'.`',p:86},
{t:O,n:'status',u:'.`',p:87},
{t:O,n:'statusbar',u:'.`',p:88},
{t:O,n:'toolbar',u:'.`',p:89},
{t:O,n:'top',u:'.`',p:90},
{t:O,n:'window',u:'.`',p:91},
{t:M,n:'alert',u:'.`',p:92},
{t:M,n:'atob',u:'.`',p:93},
{t:M,n:'back',u:'.`',p:94},
{t:M,n:'blur',u:'.`',p:95},
{t:M,n:'btoa',u:'.`',p:96},
{t:M,n:'captureEvents',u:'.`',p:97},
{t:M,n:'clearInterval',u:'.`',p:98},
{t:M,n:'clearTimeout',u:'.`',p:99},
{t:M,n:'close',u:'.`',p:100},
{t:M,n:'confirm',u:'.`',p:101},
{t:M,n:'dump',u:'.`',p:102},
{t:M,n:'escape',u:'.`',p:103},
{t:M,n:'find',u:'.`',p:104},
{t:M,n:'focus',u:'.`',p:105},
{t:M,n:'forward',u:'.`',p:106},
{t:M,n:'getAttention',u:'.`',p:107},
{t:M,n:'getComputedStyle',u:'.`',p:108},
{t:M,n:'getSelection',u:'.`',p:109},
{t:M,n:'home',u:'.`',p:110},
{t:M,n:'moveBy',u:'.`',p:111},
{t:M,n:'moveTo',u:'.`',p:112},
{t:M,n:'open',u:'.`',p:113},
{t:M,n:'openDialog',u:'.`',p:114},
{t:M,n:'print',u:'.`',p:115},
{t:M,n:'prompt',u:'.`',p:116},
{t:M,n:'releaseEvents',u:'.`',p:117},
{t:M,n:'resizeBy',u:'.`',p:118},
{t:M,n:'resizeTo',u:'.`',p:119},
{t:M,n:'scroll',u:'.`',p:120},
{t:M,n:'scrollBy',u:'.`',p:121},
{t:M,n:'scrollByLines',u:'.`',p:122},
{t:M,n:'scrollByPages',u:'.`',p:123},
{t:M,n:'scrollTo',u:'.`',p:124},
{t:M,n:'setCursor',u:'.`',p:125},
{t:M,n:'setInterval',u:'.`',p:126},
{t:M,n:'setTimeout',u:'.`',p:127},
{t:M,n:'sizeToContent',u:'.`',p:128},
{t:M,n:'stop',u:'.`',p:129},
{t:M,n:'unescape',u:'.`',p:130},
{t:M,n:'updateCommands',u:'.`',p:131},
{t:D,n:'Functions',c:'Core_JavaScript_1.5_Reference:`',p:434},
{t:O,n:'arguments',c:':`',p:1},
{t:O,n:'caller',u:':`',p:1},
{t:O,n:'length',u:':`',p:2},
{t:M,n:'callee',u:':`',p:3},
{t:D,n:'Global Functions',c:'Core_JavaScript_1.5_Reference:Global_Functions',p:439},
{t:M,n:'Boolean',u:':`',p:1},
{t:M,n:'Date',u:':`',p:2},
{t:M,n:'decodeURI',u:':`',p:3},
{t:M,n:'decodeURIComponent',u:':`',p:4},
{t:M,n:'encodeURI',u:':`',p:5},
{t:M,n:'encodeURIComponent',u:':`',p:6},
{t:M,n:'eval',u:':`',p:7},
{t:M,n:'isFinite',u:':`',p:8},
{t:M,n:'isNaN',u:':`',p:9},
{t:M,n:'Number',u:':`',p:10},
{t:M,n:'Object',u:':`',p:11},
{t:M,n:'parseFloat',u:':`',p:12},
{t:M,n:'parseInt',u:':`',p:13},
{t:M,n:'String',u:':`',p:14},
{t:D,n:'Global Objects',c:'Core_JavaScript_1.5_Reference:Global_Objects',p:454},
{t:O,n:'java',u:':`',p:1},
{t:O,n:'JavaArray',c:':`',p:2},
{t:O,n:'length',u:':`',p:1},
{t:O,n:'toString',u:':`',p:2},
{t:O,n:'JavaClass',u:':`',p:5},
{t:O,n:'JavaObject',u:':`',p:6},
{t:O,n:'JavaPackage',u:':`',p:7},
{t:O,n:'Math',c:':`',p:8},
{t:O,n:'E',u:':`',p:1},
{t:O,n:'LN10',u:':`',p:2},
{t:O,n:'LN2',u:':`',p:3},
{t:O,n:'LOG10E',u:':`',p:4},
{t:O,n:'LOG2E',u:':`',p:5},
{t:O,n:'PI',u:':`',p:6},
{t:O,n:'SQRT1 2',u:':SQRT1_2',p:7},
{t:O,n:'SQRT2',u:':`',p:8},
{t:M,n:'abs',u:':`',p:9},
{t:M,n:'acos',u:':`',p:10},
{t:M,n:'asin',u:':`',p:11},
{t:M,n:'atan',u:':`',p:12},
{t:M,n:'atan2',u:':`',p:13},
{t:M,n:'ceil',u:':`',p:14},
{t:M,n:'cos',u:':`',p:15},
{t:M,n:'exp',u:':`',p:16},
{t:M,n:'floor',u:':`',p:17},
{t:M,n:'log',u:':`',p:18},
{t:M,n:'max',u:':`',p:19},
{t:M,n:'min',u:':`',p:20},
{t:M,n:'pow',u:':`',p:21},
{t:M,n:'random',u:':`',p:22},
{t:M,n:'round',u:':`',p:23},
{t:M,n:'sin',u:':`',p:24},
{t:M,n:'sqrt',u:':`',p:25},
{t:M,n:'tan',u:':`',p:26},
{t:O,n:'netscape',u:':`',p:35},
{t:O,n:'Packages',c:':`',p:36},
{t:O,n:'className',u:':`',p:1},
{t:O,n:'java',u:':`',p:2},
{t:O,n:'netscape',u:':`',p:3},
{t:O,n:'sun',u:':`',p:4},
{t:O,n:'sun',u:':`',p:41},
{t:M,n:'Array',c:':`',p:42},
{t:O,n:'constructor',u:':`',p:1},
{t:O,n:'index',u:':`',p:2},
{t:O,n:'input',u:':`',p:3},
{t:O,n:'length',u:':`',p:4},
{t:O,n:'prototype',u:':`',p:5},
{t:M,n:'concat',u:':`',p:6},
{t:M,n:'every',u:':`',p:7},
{t:M,n:'filter',u:':`',p:8},
{t:M,n:'forEach',u:':`',p:9},
{t:M,n:'indexOf',u:':`',p:10},
{t:M,n:'join',u:':`',p:11},
{t:M,n:'lastIndexOf',u:':`',p:12},
{t:M,n:'map',u:':`',p:13},
{t:M,n:'pop',u:':`',p:14},
{t:M,n:'push',u:':`',p:15},
{t:M,n:'reverse',u:':`',p:16},
{t:M,n:'shift',u:':`',p:17},
{t:M,n:'slice',u:':`',p:18},
{t:M,n:'some',u:':`',p:19},
{t:M,n:'sort',u:':`',p:20},
{t:M,n:'splice',u:':`',p:21},
{t:M,n:'toSource',u:':`',p:22},
{t:M,n:'toString',u:':`',p:23},
{t:M,n:'unshift',u:':`',p:24},
{t:M,n:'valueOf',u:':`',p:25},
{t:M,n:'Boolean',c:':`',p:68},
{t:O,n:'constructor',u:':`',p:1},
{t:O,n:'prototype',u:':`',p:2},
{t:M,n:'toSource',u:':`',p:3},
{t:M,n:'toString',u:':`',p:4},
{t:M,n:'valueOf',u:':`',p:5},
{t:M,n:'Date',c:':`',p:74},
{t:O,n:'constructor',u:':`',p:1},
{t:O,n:'prototype',u:':`',p:2},
{t:M,n:'getDate',u:':`',p:3},
{t:M,n:'getDay',u:':`',p:4},
{t:M,n:'getFullYear',u:':`',p:5},
{t:M,n:'getHours',u:':`',p:6},
{t:M,n:'getMilliseconds',u:':`',p:7},
{t:M,n:'getMinutes',u:':`',p:8},
{t:M,n:'getMonth',u:':`',p:9},
{t:M,n:'getSeconds',u:':`',p:10},
{t:M,n:'getTime',u:':`',p:11},
{t:M,n:'getTimezoneOffset',u:':`',p:12},
{t:M,n:'getUTCDate',u:':`',p:13},
{t:M,n:'getUTCDay',u:':`',p:14},
{t:M,n:'getUTCFullYear',u:':`',p:15},
{t:M,n:'getUTCHours',u:':`',p:16},
{t:M,n:'getUTCMilliseconds',u:':`',p:17},
{t:M,n:'getUTCMinutes',u:':`',p:18},
{t:M,n:'getUTCMonth',u:':`',p:19},
{t:M,n:'getUTCSeconds',u:':`',p:20},
{t:M,n:'getYear',u:':`',p:21},
{t:M,n:'parse',u:':`',p:22},
{t:M,n:'setDate',u:':`',p:23},
{t:M,n:'setFullYear',u:':`',p:24},
{t:M,n:'setHours',u:':`',p:25},
{t:M,n:'setMilliseconds',u:':`',p:26},
{t:M,n:'setMinutes',u:':`',p:27},
{t:M,n:'setMonth',u:':`',p:28},
{t:M,n:'setSeconds',u:':`',p:29},
{t:M,n:'setTime',u:':`',p:30},
{t:M,n:'setUTCDate',u:':`',p:31},
{t:M,n:'setUTCFullYear',u:':`',p:32},
{t:M,n:'setUTCHours',u:':`',p:33},
{t:M,n:'setUTCMilliseconds',u:':`',p:34},
{t:M,n:'setUTCMinutes',u:':`',p:35},
{t:M,n:'setUTCMonth',u:':`',p:36},
{t:M,n:'setUTCSeconds',u:':`',p:37},
{t:M,n:'setYear',u:':`',p:38},
{t:M,n:'toGMTString',u:':`',p:39},
{t:M,n:'toLocaleDateString',u:':`',p:40},
{t:M,n:'toLocaleString',u:':`',p:41},
{t:M,n:'toLocaleTimeString',u:':`',p:42},
{t:M,n:'toSource',u:':`',p:43},
{t:M,n:'toString',u:':`',p:44},
{t:M,n:'toUTCString',u:':`',p:45},
{t:M,n:'UTC',u:':`',p:46},
{t:M,n:'valueOf',u:':`',p:47},
{t:M,n:'Error',u:':`',p:122},
{t:M,n:'Function',c:':`',p:123},
{t:O,n:'arguments',u:':`',p:1},
{t:O,n:'arity',u:':`',p:2},
{t:O,n:'caller',u:':`',p:3},
{t:O,n:'constructor',u:':`',p:4},
{t:O,n:'length',u:':`',p:5},
{t:O,n:'name',u:':`',p:6},
{t:O,n:'prototype',u:':`',p:7},
{t:M,n:'apply',u:':`',p:8},
{t:M,n:'call',u:':`',p:9},
{t:M,n:'toSource',u:':`',p:10},
{t:M,n:'toString',u:':`',p:11},
{t:M,n:'valueOf',u:':`',p:12},
{t:M,n:'Number',c:':`',p:136},
{t:O,n:'constructor',u:':`',p:1},
{t:O,n:'MAX VALUE',u:':MAX_VALUE',p:2},
{t:O,n:'MIN VALUE',u:':MIN_VALUE',p:3},
{t:O,n:'NaN',u:':`',p:4},
{t:O,n:'NEGATIVE INFINITY',u:':NEGATIVE_INFINITY',p:5},
{t:O,n:'POSITIVE INFINITY',u:':POSITIVE_INFINITY',p:6},
{t:M,n:'toExponential',u:':`',p:7},
{t:M,n:'toFixed',u:':`',p:8},
{t:M,n:'toPrecision',u:':`',p:9},
{t:M,n:'toString',u:':`',p:10},
{t:M,n:'Object',c:':`',p:147},
{t:O,n:'constructor',u:':`',p:1},
{t:O,n:'prototype',u:':`',p:2},
{t:M,n:'eval',u:':`',p:3},
{t:M,n:'hasOwnProperty',u:':`',p:4},
{t:M,n:'isPrototypeOf',u:':`',p:5},
{t:M,n:'propertyIsEnumerable',u:':`',p:6},
{t:M,n:'toLocaleString',u:':`',p:7},
{t:M,n:'toSource',u:':`',p:8},
{t:M,n:'toString',u:':`',p:9},
{t:M,n:'unwatch',u:':`',p:10},
{t:M,n:'valueOf',u:':`',p:11},
{t:M,n:'watch',u:':`',p:12},
{t:M,n:'RegExp',c:':`',p:160},
{t:O,n:'constructor',u:':`',p:1},
{t:O,n:'global',u:':`',p:2},
{t:O,n:'ignoreCase',u:':`',p:3},
{t:O,n:'lastIndex',u:':`',p:4},
{t:O,n:'multiline',u:':`',p:5},
{t:O,n:'prototype',u:':`',p:6},
{t:O,n:'source',u:':`',p:7},
{t:M,n:'exec',u:':`',p:8},
{t:M,n:'test',u:':`',p:9},
{t:M,n:'toSource',u:':`',p:10},
{t:M,n:'toString',u:':`',p:11},
{t:M,n:'String',c:':`',p:172},
{t:O,n:'constructor',u:':`',p:1},
{t:O,n:'length',u:':`',p:2},
{t:O,n:'prototype',u:':`',p:3},
{t:M,n:'anchor',u:':`',p:4},
{t:M,n:'big',u:':`',p:5},
{t:M,n:'blink',u:':`',p:6},
{t:M,n:'bold',u:':`',p:7},
{t:M,n:'charAt',u:':`',p:8},
{t:M,n:'charCodeAt',u:':`',p:9},
{t:M,n:'concat',u:':`',p:10},
{t:M,n:'fixed',u:':`',p:11},
{t:M,n:'fontcolor',u:':`',p:12},
{t:M,n:'fontsize',u:':`',p:13},
{t:M,n:'fromCharCode',u:':`',p:14},
{t:M,n:'indexOf',u:':`',p:15},
{t:M,n:'italics',u:':`',p:16},
{t:M,n:'lastIndexOf',u:':`',p:17},
{t:M,n:'link',u:':`',p:18},
{t:M,n:'match',u:':`',p:19},
{t:M,n:'replace',u:':`',p:20},
{t:M,n:'search',u:':`',p:21},
{t:M,n:'slice',u:':`',p:22},
{t:M,n:'small',u:':`',p:23},
{t:M,n:'split',u:':`',p:24},
{t:M,n:'strike',u:':`',p:25},
{t:M,n:'sub',u:':`',p:26},
{t:M,n:'substr',u:':`',p:27},
{t:M,n:'substring',u:':`',p:28},
{t:M,n:'sup',u:':`',p:29},
{t:M,n:'toLowerCase',u:':`',p:30},
{t:M,n:'toSource',u:':`',p:31},
{t:M,n:'toString',u:':`',p:32},
{t:M,n:'toUpperCase',u:':`',p:33},
{t:M,n:'valueOf',u:':`',p:34},
{t:D,n:'Global Properties',c:'Core_JavaScript_1.5_Reference:Global_Properties',p:661},
{t:O,n:'Infinity',u:':`',p:1},
{t:O,n:'NaN',u:':`',p:2},
{t:O,n:'undefined',u:':`',p:3},
{t:D,n:'LiveConnect',c:'Core_JavaScript_1.5_Reference:`',p:665},
{t:O,n:'JSObject',u:':`',p:1},
{t:M,n:'JSException',u:':`',p:2},
{t:D,n:'Operators',c:'Core_JavaScript_1.5_Reference:`',p:668},
{t:O,n:'Arithmetic Operators',u:':Arithmetic_Operators',p:1},
{t:O,n:'Assignment Operators',u:':Assignment_Operators',p:2},
{t:O,n:'Bitwise Operators',u:':Bitwise_Operators',p:3},
{t:O,n:'Comparison Operators',u:':Comparison_Operators',p:4},
{t:O,n:'Logical Operators',u:':Logical_Operators',p:5},
{t:O,n:'Member Operators',u:':Member_Operators',p:6},
{t:O,n:'Operator Precedence',u:':Operator_Precedence',p:7},
{t:O,n:'String Operators',u:':String_Operators',p:8},
{t:D,n:'Special Operators',p:9},
{t:O,n:'Comma',u:'http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Operators:Special_Operators:Comma_Operator',p:1},
{t:O,n:'Conditional',u:'http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Operators:Special_Operators:Conditional_Operator',p:2},
{t:O,n:'delete',u:'http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Operators:Special_Operators:delete_Operator',p:3},
{t:O,n:'in',u:'http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Operators:Special_Operators:in_Operator',p:4},
{t:O,n:'instanceof',u:'http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Operators:Special_Operators:instanceof_Operator',p:5},
{t:O,n:'new',u:'http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Operators:Special_Operators:new_Operator',p:6},
{t:O,n:'this',u:'http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Operators:Special_Operators:this_Operator',p:7},
{t:O,n:'typeof',u:'http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Operators:Special_Operators:typeof_Operator',p:8},
{t:M,n:'function',u:'http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Operators:Special_Operators:function_Operator',p:9},
{t:M,n:'void',u:'http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Operators:Special_Operators:void_Operator',p:10},
{t:D,n:'Reserved Words',u:'Core_JavaScript_1.5_Reference:Reserved_Words',p:688},
{t:D,n:'Statements',c:'Core_JavaScript_1.5_Reference:`',p:689},
{t:O,n:'block',u:':`',p:1},
{t:O,n:'break',u:':`',p:2},
{t:O,n:'const',u:':`',p:3},
{t:O,n:'continue',u:':`',p:4},
{t:O,n:'do while',u:':do...while',p:5},
{t:O,n:'export',u:':`',p:6},
{t:O,n:'for',u:':`',p:7},
{t:O,n:'for each in',u:':for_each...in',p:8},
{t:O,n:'for in',u:':for...in',p:9},
{t:O,n:'function',u:':`',p:10},
{t:O,n:'if else',u:':if...else',p:11},
{t:O,n:'import',u:':`',p:12},
{t:O,n:'label',u:':`',p:13},
{t:O,n:'return',u:':`',p:14},
{t:O,n:'switch',u:':`',p:15},
{t:O,n:'throw',u:':`',p:16},
{t:O,n:'try catch',u:':try...catch',p:17},
{t:O,n:'var',u:':`',p:18},
{t:O,n:'while',u:':`',p:19},
{t:O,n:'with',u:':`',p:20},
null);
finishModuleProcessing('module_gecko.js',tmp);