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_docbook.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:'DocBook',u:'docbook.html',c:'http://www.docbook.org/tdg/en/html/',p:1},
{t:T,n:'abbrev',u:'`.html',p:1},
{t:T,n:'abstract',u:'`.html',p:2},
{t:T,n:'accel',u:'`.html',p:3},
{t:T,n:'ackno',u:'`.html',p:4},
{t:T,n:'acronym',u:'`.html',p:5},
{t:T,n:'action',u:'`.html',p:6},
{t:T,n:'address',u:'`.html',p:7},
{t:T,n:'affiliation',u:'`.html',p:8},
{t:T,n:'alt',u:'`.html',p:9},
{t:T,n:'anchor',u:'`.html',p:10},
{t:T,n:'answer',u:'`.html',p:11},
{t:T,n:'appendix',u:'`.html',p:12},
{t:T,n:'appendixinfo',u:'`.html',p:13},
{t:T,n:'application',u:'`.html',p:14},
{t:T,n:'area',u:'`.html',p:15},
{t:T,n:'areaset',u:'`.html',p:16},
{t:T,n:'areaspec',u:'`.html',p:17},
{t:T,n:'arg',u:'`.html',p:18},
{t:T,n:'article',u:'`.html',p:19},
{t:T,n:'articleinfo',u:'`.html',p:20},
{t:T,n:'artpagenums',u:'`.html',p:21},
{t:T,n:'attribution',u:'`.html',p:22},
{t:T,n:'audiodata',u:'`.html',p:23},
{t:T,n:'audioobject',u:'`.html',p:24},
{t:T,n:'author',u:'`.html',p:25},
{t:T,n:'authorblurb',u:'`.html',p:26},
{t:T,n:'authorgroup',u:'`.html',p:27},
{t:T,n:'authorinitials',u:'`.html',p:28},
{t:T,n:'beginpage',u:'`.html',p:29},
{t:T,n:'bibliocoverage',u:'`.html',p:30},
{t:T,n:'bibliodiv',u:'`.html',p:31},
{t:T,n:'biblioentry',u:'`.html',p:32},
{t:T,n:'bibliography',u:'`.html',p:33},
{t:T,n:'bibliographyinfo',u:'`.html',p:34},
{t:T,n:'biblioid',u:'`.html',p:35},
{t:T,n:'bibliolist',u:'`.html',p:36},
{t:T,n:'bibliomisc',u:'`.html',p:37},
{t:T,n:'bibliomixed',u:'`.html',p:38},
{t:T,n:'bibliomset',u:'`.html',p:39},
{t:T,n:'biblioref',u:'`.html',p:40},
{t:T,n:'bibliorelation',u:'`.html',p:41},
{t:T,n:'biblioset',u:'`.html',p:42},
{t:T,n:'bibliosource',u:'`.html',p:43},
{t:T,n:'blockinfo',u:'`.html',p:44},
{t:T,n:'blockquote',u:'`.html',p:45},
{t:T,n:'book',u:'`.html',p:46},
{t:T,n:'bookinfo',u:'`.html',p:47},
{t:T,n:'bridgehead',u:'`.html',p:48},
{t:T,n:'callout',u:'`.html',p:49},
{t:T,n:'calloutlist',u:'`.html',p:50},
{t:T,n:'caption',u:'`.html',p:51},
{t:T,n:'caution',u:'`.html',p:52},
{t:T,n:'chapter',u:'`.html',p:53},
{t:T,n:'chapterinfo',u:'`.html',p:54},
{t:T,n:'citation',u:'`.html',p:55},
{t:T,n:'citebiblioid',u:'`.html',p:56},
{t:T,n:'citerefentry',u:'`.html',p:57},
{t:T,n:'citetitle',u:'`.html',p:58},
{t:T,n:'city',u:'`.html',p:59},
{t:T,n:'classname',u:'`.html',p:60},
{t:T,n:'classsynopsis',u:'`.html',p:61},
{t:T,n:'classsynopsisinfo',u:'`.html',p:62},
{t:T,n:'cmdsynopsis',u:'`.html',p:63},
{t:T,n:'co',u:'`.html',p:64},
{t:T,n:'code',u:'`.html',p:65},
{t:T,n:'col',u:'`.html',p:66},
{t:T,n:'colgroup',u:'`.html',p:67},
{t:T,n:'collab',u:'`.html',p:68},
{t:T,n:'collabname',u:'`.html',p:69},
{t:T,n:'colophon',u:'`.html',p:70},
{t:T,n:'colspec',u:'`.html',p:71},
{t:T,n:'command',u:'`.html',p:72},
{t:T,n:'computeroutput',u:'`.html',p:73},
{t:T,n:'confdates',u:'`.html',p:74},
{t:T,n:'confgroup',u:'`.html',p:75},
{t:T,n:'confnum',u:'`.html',p:76},
{t:T,n:'confsponsor',u:'`.html',p:77},
{t:T,n:'conftitle',u:'`.html',p:78},
{t:T,n:'constant',u:'`.html',p:79},
{t:T,n:'constraint',u:'`.html',p:80},
{t:T,n:'constraintdef',u:'`.html',p:81},
{t:T,n:'constructorsynopsis',u:'`.html',p:82},
{t:T,n:'contractnum',u:'`.html',p:83},
{t:T,n:'contractsponsor',u:'`.html',p:84},
{t:T,n:'contrib',u:'`.html',p:85},
{t:T,n:'copyright',u:'`.html',p:86},
{t:T,n:'coref',u:'`.html',p:87},
{t:T,n:'corpauthor',u:'`.html',p:88},
{t:T,n:'corpcredit',u:'`.html',p:89},
{t:T,n:'corpname',u:'`.html',p:90},
{t:T,n:'country',u:'`.html',p:91},
{t:T,n:'database',u:'`.html',p:92},
{t:T,n:'date',u:'`.html',p:93},
{t:T,n:'dedication',u:'`.html',p:94},
{t:T,n:'destructorsynopsis',u:'`.html',p:95},
{t:T,n:'edition',u:'`.html',p:96},
{t:T,n:'editor',u:'`.html',p:97},
{t:T,n:'email',u:'`.html',p:98},
{t:T,n:'emphasis',u:'`.html',p:99},
{t:T,n:'entry',u:'`.html',p:100},
{t:T,n:'entrytbl',u:'`.html',p:101},
{t:T,n:'envar',u:'`.html',p:102},
{t:T,n:'epigraph',u:'`.html',p:103},
{t:T,n:'equation',u:'`.html',p:104},
{t:T,n:'errorcode',u:'`.html',p:105},
{t:T,n:'errorname',u:'`.html',p:106},
{t:T,n:'errortext',u:'`.html',p:107},
{t:T,n:'errortype',u:'`.html',p:108},
{t:T,n:'example',u:'`.html',p:109},
{t:T,n:'exceptionname',u:'`.html',p:110},
{t:T,n:'fax',u:'`.html',p:111},
{t:T,n:'fieldsynopsis',u:'`.html',p:112},
{t:T,n:'figure',u:'`.html',p:113},
{t:T,n:'filename',u:'`.html',p:114},
{t:T,n:'firstname',u:'`.html',p:115},
{t:T,n:'firstterm',u:'`.html',p:116},
{t:T,n:'footnote',u:'`.html',p:117},
{t:T,n:'footnoteref',u:'`.html',p:118},
{t:T,n:'foreignphrase',u:'`.html',p:119},
{t:T,n:'formalpara',u:'`.html',p:120},
{t:T,n:'funcdef',u:'`.html',p:121},
{t:T,n:'funcparams',u:'`.html',p:122},
{t:T,n:'funcprototype',u:'`.html',p:123},
{t:T,n:'funcsynopsis',u:'`.html',p:124},
{t:T,n:'funcsynopsisinfo',u:'`.html',p:125},
{t:T,n:'function',u:'`.html',p:126},
{t:T,n:'glossary',u:'`.html',p:127},
{t:T,n:'glossaryinfo',u:'`.html',p:128},
{t:T,n:'glossdef',u:'`.html',p:129},
{t:T,n:'glossdiv',u:'`.html',p:130},
{t:T,n:'glossentry',u:'`.html',p:131},
{t:T,n:'glosslist',u:'`.html',p:132},
{t:T,n:'glosssee',u:'`.html',p:133},
{t:T,n:'glossseealso',u:'`.html',p:134},
{t:T,n:'glossterm',u:'`.html',p:135},
{t:T,n:'graphic',u:'`.html',p:136},
{t:T,n:'graphicco',u:'`.html',p:137},
{t:T,n:'group',u:'`.html',p:138},
{t:T,n:'guibutton',u:'`.html',p:139},
{t:T,n:'guiicon',u:'`.html',p:140},
{t:T,n:'guilabel',u:'`.html',p:141},
{t:T,n:'guimenu',u:'`.html',p:142},
{t:T,n:'guimenuitem',u:'`.html',p:143},
{t:T,n:'guisubmenu',u:'`.html',p:144},
{t:T,n:'hardware',u:'`.html',p:145},
{t:T,n:'highlights',u:'`.html',p:146},
{t:T,n:'holder',u:'`.html',p:147},
{t:T,n:'honorific',u:'`.html',p:148},
{t:T,n:'html:form',u:'html-form.html',p:149},
{t:T,n:'imagedata',u:'`.html',p:150},
{t:T,n:'imageobject',u:'`.html',p:151},
{t:T,n:'imageobjectco',u:'`.html',p:152},
{t:T,n:'important',u:'`.html',p:153},
{t:T,n:'index',u:'`.html',p:154},
{t:T,n:'indexdiv',u:'`.html',p:155},
{t:T,n:'indexentry',u:'`.html',p:156},
{t:T,n:'indexinfo',u:'`.html',p:157},
{t:T,n:'indexterm',u:'`.html',p:158},
{t:T,n:'informalequation',u:'`.html',p:159},
{t:T,n:'informalexample',u:'`.html',p:160},
{t:T,n:'informalfigure',u:'`.html',p:161},
{t:T,n:'informaltable',u:'`.html',p:162},
{t:T,n:'initializer',u:'`.html',p:163},
{t:T,n:'inlineequation',u:'`.html',p:164},
{t:T,n:'inlinegraphic',u:'`.html',p:165},
{t:T,n:'inlinemediaobject',u:'`.html',p:166},
{t:T,n:'interface',u:'`.html',p:167},
{t:T,n:'interfacename',u:'`.html',p:168},
{t:T,n:'invpartnumber',u:'`.html',p:169},
{t:T,n:'isbn',u:'`.html',p:170},
{t:T,n:'issn',u:'`.html',p:171},
{t:T,n:'issuenum',u:'`.html',p:172},
{t:T,n:'itemizedlist',u:'`.html',p:173},
{t:T,n:'itermset',u:'`.html',p:174},
{t:T,n:'jobtitle',u:'`.html',p:175},
{t:T,n:'keycap',u:'`.html',p:176},
{t:T,n:'keycode',u:'`.html',p:177},
{t:T,n:'keycombo',u:'`.html',p:178},
{t:T,n:'keysym',u:'`.html',p:179},
{t:T,n:'keyword',u:'`.html',p:180},
{t:T,n:'keywordset',u:'`.html',p:181},
{t:T,n:'label',u:'`.html',p:182},
{t:T,n:'legalnotice',u:'`.html',p:183},
{t:T,n:'lhs',u:'`.html',p:184},
{t:T,n:'lineage',u:'`.html',p:185},
{t:T,n:'lineannotation',u:'`.html',p:186},
{t:T,n:'link',u:'`.html',p:187},
{t:T,n:'listitem',u:'`.html',p:188},
{t:T,n:'literal',u:'`.html',p:189},
{t:T,n:'literallayout',u:'`.html',p:190},
{t:T,n:'lot',u:'`.html',p:191},
{t:T,n:'lotentry',u:'`.html',p:192},
{t:T,n:'manvolnum',u:'`.html',p:193},
{t:T,n:'markup',u:'`.html',p:194},
{t:T,n:'mathphrase',u:'`.html',p:195},
{t:T,n:'medialabel',u:'`.html',p:196},
{t:T,n:'mediaobject',u:'`.html',p:197},
{t:T,n:'mediaobjectco',u:'`.html',p:198},
{t:T,n:'member',u:'`.html',p:199},
{t:T,n:'menuchoice',u:'`.html',p:200},
{t:T,n:'methodname',u:'`.html',p:201},
{t:T,n:'methodparam',u:'`.html',p:202},
{t:T,n:'methodsynopsis',u:'`.html',p:203},
{t:T,n:'mml:math',u:'mml-math.html',p:204},
{t:T,n:'modespec',u:'`.html',p:205},
{t:T,n:'modifier',u:'`.html',p:206},
{t:T,n:'mousebutton',u:'`.html',p:207},
{t:T,n:'msg',u:'`.html',p:208},
{t:T,n:'msgaud',u:'`.html',p:209},
{t:T,n:'msgentry',u:'`.html',p:210},
{t:T,n:'msgexplan',u:'`.html',p:211},
{t:T,n:'msginfo',u:'`.html',p:212},
{t:T,n:'msglevel',u:'`.html',p:213},
{t:T,n:'msgmain',u:'`.html',p:214},
{t:T,n:'msgorig',u:'`.html',p:215},
{t:T,n:'msgrel',u:'`.html',p:216},
{t:T,n:'msgset',u:'`.html',p:217},
{t:T,n:'msgsub',u:'`.html',p:218},
{t:T,n:'msgtext',u:'`.html',p:219},
{t:T,n:'nonterminal',u:'`.html',p:220},
{t:T,n:'note',u:'`.html',p:221},
{t:T,n:'objectinfo',u:'`.html',p:222},
{t:T,n:'olink',u:'`.html',p:223},
{t:T,n:'ooclass',u:'`.html',p:224},
{t:T,n:'ooexception',u:'`.html',p:225},
{t:T,n:'oointerface',u:'`.html',p:226},
{t:T,n:'option',u:'`.html',p:227},
{t:T,n:'optional',u:'`.html',p:228},
{t:T,n:'orderedlist',u:'`.html',p:229},
{t:T,n:'orgdiv',u:'`.html',p:230},
{t:T,n:'orgname',u:'`.html',p:231},
{t:T,n:'otheraddr',u:'`.html',p:232},
{t:T,n:'othercredit',u:'`.html',p:233},
{t:T,n:'othername',u:'`.html',p:234},
{t:T,n:'package',u:'`.html',p:235},
{t:T,n:'pagenums',u:'`.html',p:236},
{t:T,n:'para',u:'`.html',p:237},
{t:T,n:'paramdef',u:'`.html',p:238},
{t:T,n:'parameter',u:'`.html',p:239},
{t:T,n:'part',u:'`.html',p:240},
{t:T,n:'partinfo',u:'`.html',p:241},
{t:T,n:'partintro',u:'`.html',p:242},
{t:T,n:'personblurb',u:'`.html',p:243},
{t:T,n:'personname',u:'`.html',p:244},
{t:T,n:'phone',u:'`.html',p:245},
{t:T,n:'phrase',u:'`.html',p:246},
{t:T,n:'pob',u:'`.html',p:247},
{t:T,n:'postcode',u:'`.html',p:248},
{t:T,n:'preface',u:'`.html',p:249},
{t:T,n:'prefaceinfo',u:'`.html',p:250},
{t:T,n:'primary',u:'`.html',p:251},
{t:T,n:'primaryie',u:'`.html',p:252},
{t:T,n:'printhistory',u:'`.html',p:253},
{t:T,n:'procedure',u:'`.html',p:254},
{t:T,n:'production',u:'`.html',p:255},
{t:T,n:'productionrecap',u:'`.html',p:256},
{t:T,n:'productionset',u:'`.html',p:257},
{t:T,n:'productname',u:'`.html',p:258},
{t:T,n:'productnumber',u:'`.html',p:259},
{t:T,n:'programlisting',u:'`.html',p:260},
{t:T,n:'programlistingco',u:'`.html',p:261},
{t:T,n:'prompt',u:'`.html',p:262},
{t:T,n:'property',u:'`.html',p:263},
{t:T,n:'pubdate',u:'`.html',p:264},
{t:T,n:'publisher',u:'`.html',p:265},
{t:T,n:'publishername',u:'`.html',p:266},
{t:T,n:'pubsnumber',u:'`.html',p:267},
{t:T,n:'qandadiv',u:'`.html',p:268},
{t:T,n:'qandaentry',u:'`.html',p:269},
{t:T,n:'qandaset',u:'`.html',p:270},
{t:T,n:'question',u:'`.html',p:271},
{t:T,n:'quote',u:'`.html',p:272},
{t:T,n:'refclass',u:'`.html',p:273},
{t:T,n:'refdescriptor',u:'`.html',p:274},
{t:T,n:'refentry',u:'`.html',p:275},
{t:T,n:'refentryinfo',u:'`.html',p:276},
{t:T,n:'refentrytitle',u:'`.html',p:277},
{t:T,n:'reference',u:'`.html',p:278},
{t:T,n:'referenceinfo',u:'`.html',p:279},
{t:T,n:'refmeta',u:'`.html',p:280},
{t:T,n:'refmiscinfo',u:'`.html',p:281},
{t:T,n:'refname',u:'`.html',p:282},
{t:T,n:'refnamediv',u:'`.html',p:283},
{t:T,n:'refpurpose',u:'`.html',p:284},
{t:T,n:'refsect1',u:'`.html',p:285},
{t:T,n:'refsect1info',u:'`.html',p:286},
{t:T,n:'refsect2',u:'`.html',p:287},
{t:T,n:'refsect2info',u:'`.html',p:288},
{t:T,n:'refsect3',u:'`.html',p:289},
{t:T,n:'refsect3info',u:'`.html',p:290},
{t:T,n:'refsection',u:'`.html',p:291},
{t:T,n:'refsectioninfo',u:'`.html',p:292},
{t:T,n:'refsynopsisdiv',u:'`.html',p:293},
{t:T,n:'refsynopsisdivinfo',u:'`.html',p:294},
{t:T,n:'releaseinfo',u:'`.html',p:295},
{t:T,n:'remark',u:'`.html',p:296},
{t:T,n:'replaceable',u:'`.html',p:297},
{t:T,n:'returnvalue',u:'`.html',p:298},
{t:T,n:'revdescription',u:'`.html',p:299},
{t:T,n:'revhistory',u:'`.html',p:300},
{t:T,n:'revision',u:'`.html',p:301},
{t:T,n:'revnumber',u:'`.html',p:302},
{t:T,n:'revremark',u:'`.html',p:303},
{t:T,n:'rhs',u:'`.html',p:304},
{t:T,n:'row',u:'`.html',p:305},
{t:T,n:'sbr',u:'`.html',p:306},
{t:T,n:'screen',u:'`.html',p:307},
{t:T,n:'screenco',u:'`.html',p:308},
{t:T,n:'screeninfo',u:'`.html',p:309},
{t:T,n:'screenshot',u:'`.html',p:310},
{t:T,n:'secondary',u:'`.html',p:311},
{t:T,n:'secondaryie',u:'`.html',p:312},
{t:T,n:'sect1',u:'`.html',p:313},
{t:T,n:'sect1info',u:'`.html',p:314},
{t:T,n:'sect2',u:'`.html',p:315},
{t:T,n:'sect2info',u:'`.html',p:316},
{t:T,n:'sect3',u:'`.html',p:317},
{t:T,n:'sect3info',u:'`.html',p:318},
{t:T,n:'sect4',u:'`.html',p:319},
{t:T,n:'sect4info',u:'`.html',p:320},
{t:T,n:'sect5',u:'`.html',p:321},
{t:T,n:'sect5info',u:'`.html',p:322},
{t:T,n:'section',u:'`.html',p:323},
{t:T,n:'sectioninfo',u:'`.html',p:324},
{t:T,n:'see',u:'`.html',p:325},
{t:T,n:'seealso',u:'`.html',p:326},
{t:T,n:'seealsoie',u:'`.html',p:327},
{t:T,n:'seeie',u:'`.html',p:328},
{t:T,n:'seg',u:'`.html',p:329},
{t:T,n:'seglistitem',u:'`.html',p:330},
{t:T,n:'segmentedlist',u:'`.html',p:331},
{t:T,n:'segtitle',u:'`.html',p:332},
{t:T,n:'seriesvolnums',u:'`.html',p:333},
{t:T,n:'set',u:'`.html',p:334},
{t:T,n:'setindex',u:'`.html',p:335},
{t:T,n:'setindexinfo',u:'`.html',p:336},
{t:T,n:'setinfo',u:'`.html',p:337},
{t:T,n:'sgmltag',u:'`.html',p:338},
{t:T,n:'shortaffil',u:'`.html',p:339},
{t:T,n:'shortcut',u:'`.html',p:340},
{t:T,n:'sidebar',u:'`.html',p:341},
{t:T,n:'sidebarinfo',u:'`.html',p:342},
{t:T,n:'simpara',u:'`.html',p:343},
{t:T,n:'simplelist',u:'`.html',p:344},
{t:T,n:'simplemsgentry',u:'`.html',p:345},
{t:T,n:'simplesect',u:'`.html',p:346},
{t:T,n:'spanspec',u:'`.html',p:347},
{t:T,n:'state',u:'`.html',p:348},
{t:T,n:'step',u:'`.html',p:349},
{t:T,n:'stepalternatives',u:'`.html',p:350},
{t:T,n:'street',u:'`.html',p:351},
{t:T,n:'structfield',u:'`.html',p:352},
{t:T,n:'structname',u:'`.html',p:353},
{t:T,n:'subject',u:'`.html',p:354},
{t:T,n:'subjectset',u:'`.html',p:355},
{t:T,n:'subjectterm',u:'`.html',p:356},
{t:T,n:'subscript',u:'`.html',p:357},
{t:T,n:'substeps',u:'`.html',p:358},
{t:T,n:'subtitle',u:'`.html',p:359},
{t:T,n:'superscript',u:'`.html',p:360},
{t:T,n:'surname',u:'`.html',p:361},
{t:T,n:'svg:svg',u:'svg-svg.html',p:362},
{t:T,n:'symbol',u:'`.html',p:363},
{t:T,n:'synopfragment',u:'`.html',p:364},
{t:T,n:'synopfragmentref',u:'`.html',p:365},
{t:T,n:'synopsis',u:'`.html',p:366},
{t:T,n:'systemitem',u:'`.html',p:367},
{t:T,n:'table',u:'`.html',p:368},
{t:T,n:'task',u:'`.html',p:369},
{t:T,n:'taskprerequisites',u:'`.html',p:370},
{t:T,n:'taskrelated',u:'`.html',p:371},
{t:T,n:'tasksummary',u:'`.html',p:372},
{t:T,n:'tbody',u:'`.html',p:373},
{t:T,n:'td',u:'`.html',p:374},
{t:T,n:'term',u:'`.html',p:375},
{t:T,n:'termdef',u:'`.html',p:376},
{t:T,n:'tertiary',u:'`.html',p:377},
{t:T,n:'tertiaryie',u:'`.html',p:378},
{t:T,n:'textdata',u:'`.html',p:379},
{t:T,n:'textobject',u:'`.html',p:380},
{t:T,n:'tfoot',u:'`.html',p:381},
{t:T,n:'tgroup',u:'`.html',p:382},
{t:T,n:'th',u:'`.html',p:383},
{t:T,n:'thead',u:'`.html',p:384},
{t:T,n:'tip',u:'`.html',p:385},
{t:T,n:'title',u:'`.html',p:386},
{t:T,n:'titleabbrev',u:'`.html',p:387},
{t:T,n:'toc',u:'`.html',p:388},
{t:T,n:'tocback',u:'`.html',p:389},
{t:T,n:'tocchap',u:'`.html',p:390},
{t:T,n:'tocentry',u:'`.html',p:391},
{t:T,n:'tocfront',u:'`.html',p:392},
{t:T,n:'toclevel1',u:'`.html',p:393},
{t:T,n:'toclevel2',u:'`.html',p:394},
{t:T,n:'toclevel3',u:'`.html',p:395},
{t:T,n:'toclevel4',u:'`.html',p:396},
{t:T,n:'toclevel5',u:'`.html',p:397},
{t:T,n:'tocpart',u:'`.html',p:398},
{t:T,n:'token',u:'`.html',p:399},
{t:T,n:'tr',u:'`.html',p:400},
{t:T,n:'trademark',u:'`.html',p:401},
{t:T,n:'type',u:'`.html',p:402},
{t:T,n:'ulink',u:'`.html',p:403},
{t:T,n:'uri',u:'`.html',p:404},
{t:T,n:'userinput',u:'`.html',p:405},
{t:T,n:'varargs',u:'`.html',p:406},
{t:T,n:'variablelist',u:'`.html',p:407},
{t:T,n:'varlistentry',u:'`.html',p:408},
{t:T,n:'varname',u:'`.html',p:409},
{t:T,n:'videodata',u:'`.html',p:410},
{t:T,n:'videoobject',u:'`.html',p:411},
{t:T,n:'void',u:'`.html',p:412},
{t:T,n:'volumenum',u:'`.html',p:413},
{t:T,n:'warning',u:'`.html',p:414},
{t:T,n:'wordasword',u:'`.html',p:415},
{t:T,n:'xref',u:'`.html',p:416},
{t:T,n:'year',u:'`.html',p:417},
null);
finishModuleProcessing('module_docbook.js',tmp);