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_html.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:'HTML Elements',u:'alist.html',c:'http://www.htmlhelp.com/reference/html40/',p:1},
{t:T,n:'a',c:'speci`l/a.html',p:1},
{t:O,n:'href',p:1},
{t:O,n:'name',p:2},
{t:O,n:'rel',p:3},
{t:V,n:'Alternate',p:1},
{t:V,n:'StyleSheet',p:2},
{t:V,n:'Start',p:3},
{t:V,n:'Next',p:4},
{t:V,n:'Prev',p:5},
{t:V,n:'Contents',p:6},
{t:V,n:'Index',p:7},
{t:V,n:'Glossary',p:8},
{t:V,n:'Copyright',p:9},
{t:V,n:'Chapter',p:10},
{t:V,n:'Section',p:11},
{t:V,n:'Subsection',p:12},
{t:V,n:'Appendix',p:13},
{t:V,n:'Help',p:14},
{t:V,n:'Bookmark',p:15},
{t:O,n:'rev',p:19},
{t:V,n:'Alternate',p:1},
{t:V,n:'StyleSheet',p:2},
{t:V,n:'Start',p:3},
{t:V,n:'Next',p:4},
{t:V,n:'Prev',p:5},
{t:V,n:'Contents',p:6},
{t:V,n:'Index',p:7},
{t:V,n:'Glossary',p:8},
{t:V,n:'Copyright',p:9},
{t:V,n:'Chapter',p:10},
{t:V,n:'Section',p:11},
{t:V,n:'Subsection',p:12},
{t:V,n:'Appendix',p:13},
{t:V,n:'Help',p:14},
{t:V,n:'Bookmark',p:15},
{t:O,n:'type',p:35},
{t:O,n:'target',p:36},
{t:V,n:'_blank',p:1},
{t:V,n:'_self',p:2},
{t:V,n:'_parent',p:3},
{t:V,n:'_top',p:4},
{t:O,n:'hreflang',p:41},
{t:O,n:'charset',p:42},
{t:O,n:'accesskey',p:43},
{t:O,n:'tabindex',p:44},
{t:O,n:'shape',p:45},
{t:V,n:'rect',p:1},
{t:V,n:'circle',p:2},
{t:V,n:'poly',p:3},
{t:V,n:'default',p:4},
{t:O,n:'coords',p:50},
{t:O,n:'onfocus',p:51},
{t:O,n:'onblur',p:52},
{t:T,n:'abbr',u:'phrase/`.html',p:54},
{t:T,n:'acronym',u:'phrase/`.html',p:55},
{t:T,n:'address',u:'block/`.html',p:56},
{t:T,n:'applet',c:'special/`.html',p:57},
{t:O,n:'code',p:1},
{t:O,n:'codebase',p:2},
{t:O,n:'archive',p:3},
{t:O,n:'object',p:4},
{t:O,n:'name',p:5},
{t:O,n:'alt',p:6},
{t:O,n:'align',p:7},
{t:V,n:'top',p:1},
{t:V,n:'middle',p:2},
{t:V,n:'bottom',p:3},
{t:V,n:'left',p:4},
{t:V,n:'right',p:5},
{t:O,n:'hspace',p:13},
{t:O,n:'vspace',p:14},
{t:T,n:'area',c:'special/`.html',p:72},
{t:O,n:'shape',p:1},
{t:V,n:'rect',p:1},
{t:V,n:'circle',p:2},
{t:V,n:'poly',p:3},
{t:V,n:'default',p:4},
{t:O,n:'coords',p:6},
{t:O,n:'href',p:7},
{t:O,n:'target',p:8},
{t:V,n:'_blank',p:1},
{t:V,n:'_self',p:2},
{t:V,n:'_parent',p:3},
{t:V,n:'_top',p:4},
{t:O,n:'tabindex',p:13},
{t:O,n:'onfocus',p:14},
{t:O,n:'onblur',p:15},
{t:T,n:'b',u:'fontstyle/`.html',p:88},
{t:T,n:'base',c:'head/`.html',p:89},
{t:O,n:'href',p:1},
{t:O,n:'target',p:2},
{t:V,n:'_blank',p:1},
{t:V,n:'_self',p:2},
{t:V,n:'_parent',p:3},
{t:V,n:'_top',p:4},
{t:T,n:'basefont',c:'special/`.html',p:96},
{t:O,n:'color',p:1},
{t:O,n:'face',p:2},
{t:T,n:'bdo',u:'special/`.html',p:99},
{t:T,n:'big',u:'fontstyle/`.html',p:100},
{t:T,n:'blockquote',c:'block/`.html',p:101},
{t:O,n:'cite',p:1},
{t:T,n:'body',u:'html/`.html',p:103},
{t:T,n:'br',c:'special/`.html',p:104},
{t:O,n:'clear',p:1},
{t:V,n:'left',p:1},
{t:V,n:'all',p:2},
{t:V,n:'right',p:3},
{t:V,n:'none',p:4},
{t:T,n:'button',c:'forms/`.html',p:110},
{t:O,n:'name',p:1},
{t:O,n:'value',p:2},
{t:O,n:'type',p:3},
{t:V,n:'submit',p:1},
{t:V,n:'reset',p:2},
{t:V,n:'button',p:3},
{t:O,n:'accesskey',p:7},
{t:O,n:'tabindex',p:8},
{t:O,n:'onfocus',p:9},
{t:O,n:'onblur',p:10},
{t:T,n:'caption',c:'tables/`.html',p:121},
{t:O,n:'align',p:1},
{t:V,n:'top',p:1},
{t:V,n:'bottom',p:2},
{t:V,n:'left',p:3},
{t:V,n:'right',p:4},
{t:T,n:'center',u:'block/`.html',p:127},
{t:T,n:'cite',u:'phrase/`.html',p:128},
{t:T,n:'code',u:'phrase/`.html',p:129},
{t:T,n:'col',c:'tables/`.html',p:130},
{t:O,n:'span',p:1},
{t:O,n:'width',p:2},
{t:O,n:'align',p:3},
{t:V,n:'left',p:1},
{t:V,n:'center',p:2},
{t:V,n:'right',p:3},
{t:V,n:'justify',p:4},
{t:V,n:'char',p:5},
{t:O,n:'char',p:9},
{t:O,n:'charoff',p:10},
{t:O,n:'valign',p:11},
{t:V,n:'top',p:1},
{t:V,n:'middle',p:2},
{t:V,n:'bottom',p:3},
{t:V,n:'baseline',p:4},
{t:T,n:'colgroup',c:'tables/`.html',p:146},
{t:O,n:'span',p:1},
{t:O,n:'width',p:2},
{t:O,n:'align',p:3},
{t:V,n:'left',p:1},
{t:V,n:'center',p:2},
{t:V,n:'right',p:3},
{t:V,n:'justify',p:4},
{t:V,n:'char',p:5},
{t:O,n:'char',p:9},
{t:O,n:'charoff',p:10},
{t:O,n:'valign',p:11},
{t:V,n:'top',p:1},
{t:V,n:'middle',p:2},
{t:V,n:'bottom',p:3},
{t:V,n:'baseline',p:4},
{t:T,n:'dd',u:'lists/`.html',p:162},
{t:T,n:'del',c:'phrase/`.html',p:163},
{t:O,n:'cite',p:1},
{t:O,n:'datetime',p:2},
{t:T,n:'dfn',u:'phrase/`.html',p:166},
{t:T,n:'dir',u:'lists/`.html',p:167},
{t:T,n:'div',c:'block/`.html',p:168},
{t:O,n:'align',p:1},
{t:V,n:'left',p:1},
{t:V,n:'center',p:2},
{t:V,n:'right',p:3},
{t:V,n:'justify',p:4},
{t:T,n:'dl',u:'lists/`.html',p:174},
{t:T,n:'dt',u:'lists/`.html',p:175},
{t:T,n:'em',u:'phrase/`.html',p:176},
{t:T,n:'fieldset',u:'forms/`.html',p:177},
{t:T,n:'font',c:'special/`.html',p:178},
{t:O,n:'size',p:1},
{t:O,n:'color',p:2},
{t:O,n:'face',p:3},
{t:T,n:'form',c:'`s/form.html',p:182},
{t:O,n:'method',p:1},
{t:V,n:'get',p:1},
{t:V,n:'post',p:2},
{t:O,n:'enctype',p:4},
{t:O,n:'target',p:5},
{t:V,n:'_blank',p:1},
{t:V,n:'_self',p:2},
{t:V,n:'_parent',p:3},
{t:V,n:'_top',p:4},
{t:O,n:'onsubmit',p:10},
{t:O,n:'onreset',p:11},
{t:T,n:'frame',u:'`s/frame.html',p:194},
{t:T,n:'frameset',u:'frames/`.html',p:195},
{t:T,n:'h1',c:'block/`.html',p:196},
{t:O,n:'align',p:1},
{t:V,n:'left',p:1},
{t:V,n:'center',p:2},
{t:V,n:'right',p:3},
{t:V,n:'justify',p:4},
{t:T,n:'h2',c:'block/`.html',p:202},
{t:O,n:'align',p:1},
{t:V,n:'left',p:1},
{t:V,n:'center',p:2},
{t:V,n:'right',p:3},
{t:V,n:'justify',p:4},
{t:T,n:'h3',c:'block/`.html',p:208},
{t:O,n:'align',p:1},
{t:V,n:'left',p:1},
{t:V,n:'center',p:2},
{t:V,n:'right',p:3},
{t:V,n:'justify',p:4},
{t:T,n:'h4',c:'block/`.html',p:214},
{t:O,n:'align',p:1},
{t:V,n:'left',p:1},
{t:V,n:'center',p:2},
{t:V,n:'right',p:3},
{t:V,n:'justify',p:4},
{t:T,n:'h5',c:'block/`.html',p:220},
{t:O,n:'align',p:1},
{t:V,n:'left',p:1},
{t:V,n:'center',p:2},
{t:V,n:'right',p:3},
{t:V,n:'justify',p:4},
{t:T,n:'h6',c:'block/`.html',p:226},
{t:O,n:'align',p:1},
{t:V,n:'left',p:1},
{t:V,n:'center',p:2},
{t:V,n:'right',p:3},
{t:V,n:'justify',p:4},
{t:T,n:'head',u:'`/head.html',p:232},
{t:T,n:'hr',c:'block/`.html',p:233},
{t:O,n:'align',p:1},
{t:V,n:'left',p:1},
{t:V,n:'center',p:2},
{t:V,n:'right',p:3},
{t:O,n:'size',p:5},
{t:O,n:'width',p:6},
{t:T,n:'html',c:'`/html.html',p:240},
{t:O,n:'version',p:1},
{t:T,n:'i',u:'fontstyle/`.html',p:242},
{t:T,n:'iframe',c:'special/`.html',p:243},
{t:O,n:'src',p:1},
{t:O,n:'name',p:2},
{t:O,n:'longdesc',p:3},
{t:O,n:'width',p:4},
{t:O,n:'height',p:5},
{t:O,n:'align',p:6},
{t:V,n:'top',p:1},
{t:V,n:'middle',p:2},
{t:V,n:'bottom',p:3},
{t:V,n:'left',p:4},
{t:V,n:'right',p:5},
{t:O,n:'frameborder',p:12},
{t:V,n:'1',p:1},
{t:V,n:'0',p:2},
{t:O,n:'marginwidth',p:15},
{t:O,n:'marginheight',p:16},
{t:O,n:'scrolling',p:17},
{t:V,n:'yes',p:1},
{t:V,n:'no',p:2},
{t:V,n:'auto',p:3},
{t:T,n:'img',c:'special/`.html',p:264},
{t:O,n:'longdesc',p:1},
{t:O,n:'width',p:2},
{t:O,n:'height',p:3},
{t:O,n:'usemap',p:4},
{t:O,n:'align',p:5},
{t:V,n:'top',p:1},
{t:V,n:'middle',p:2},
{t:V,n:'bottom',p:3},
{t:V,n:'left',p:4},
{t:V,n:'right',p:5},
{t:O,n:'border',p:11},
{t:O,n:'hspace',p:12},
{t:O,n:'vspace',p:13},
{t:T,n:'input',c:'forms/`.html',p:278},
{t:O,n:'type',p:1},
{t:V,n:'text',p:1},
{t:V,n:'password',p:2},
{t:V,n:'checkbox',p:3},
{t:V,n:'radio',p:4},
{t:V,n:'submit',p:5},
{t:V,n:'reset',p:6},
{t:V,n:'file',p:7},
{t:V,n:'hidden',p:8},
{t:V,n:'image',p:9},
{t:V,n:'button',p:10},
{t:O,n:'name',p:12},
{t:O,n:'value',p:13},
{t:O,n:'size',p:14},
{t:O,n:'maxlength',p:15},
{t:O,n:'src',p:16},
{t:O,n:'alt',p:17},
{t:O,n:'usemap',p:18},
{t:O,n:'align',p:19},
{t:V,n:'top',p:1},
{t:V,n:'middle',p:2},
{t:V,n:'bottom',p:3},
{t:V,n:'left',p:4},
{t:V,n:'right',p:5},
{t:O,n:'accept',p:25},
{t:O,n:'accesskey',p:26},
{t:O,n:'tabindex',p:27},
{t:O,n:'onfocus',p:28},
{t:O,n:'onblur',p:29},
{t:O,n:'onselect',p:30},
{t:O,n:'onchange',p:31},
{t:T,n:'ins',c:'phrase/`.html',p:310},
{t:O,n:'cite',p:1},
{t:O,n:'datetime',p:2},
{t:T,n:'isindex',c:'block/`.html',p:313},
{t:O,n:'prompt',p:1},
{t:T,n:'kbd',u:'phrase/`.html',p:315},
{t:T,n:'label',c:'forms/`.html',p:316},
{t:O,n:'for',p:1},
{t:O,n:'accesskey',p:2},
{t:O,n:'onfocus',p:3},
{t:O,n:'onblur',p:4},
{t:T,n:'legend',c:'forms/`.html',p:321},
{t:O,n:'accesskey',p:1},
{t:O,n:'align',p:2},
{t:V,n:'top',p:1},
{t:V,n:'bottom',p:2},
{t:V,n:'left',p:3},
{t:V,n:'right',p:4},
{t:T,n:'li',c:'`sts/li.html',p:328},
{t:O,n:'type',p:1},
{t:V,n:'disc',p:1},
{t:V,n:'square',p:2},
{t:V,n:'circle',p:3},
{t:V,n:'1',p:4},
{t:V,n:'a',p:5},
{t:V,n:'A',p:6},
{t:V,n:'i',p:7},
{t:V,n:'I',p:8},
{t:O,n:'value',p:10},
{t:T,n:'link',c:'head/`.html',p:339},
{t:O,n:'rel',p:1},
{t:V,n:'Alternate',p:1},
{t:V,n:'StyleSheet',p:2},
{t:V,n:'Start',p:3},
{t:V,n:'Next',p:4},
{t:V,n:'Prev',p:5},
{t:V,n:'Contents',p:6},
{t:V,n:'Index',p:7},
{t:V,n:'Glossary',p:8},
{t:V,n:'Copyright',p:9},
{t:V,n:'Chapter',p:10},
{t:V,n:'Section',p:11},
{t:V,n:'Subsection',p:12},
{t:V,n:'Appendix',p:13},
{t:V,n:'Help',p:14},
{t:V,n:'Bookmark',p:15},
{t:O,n:'rev',p:17},
{t:V,n:'Alternate',p:1},
{t:V,n:'StyleSheet',p:2},
{t:V,n:'Start',p:3},
{t:V,n:'Next',p:4},
{t:V,n:'Prev',p:5},
{t:V,n:'Contents',p:6},
{t:V,n:'Index',p:7},
{t:V,n:'Glossary',p:8},
{t:V,n:'Copyright',p:9},
{t:V,n:'Chapter',p:10},
{t:V,n:'Section',p:11},
{t:V,n:'Subsection',p:12},
{t:V,n:'Appendix',p:13},
{t:V,n:'Help',p:14},
{t:V,n:'Bookmark',p:15},
{t:O,n:'href',p:33},
{t:O,n:'type',p:34},
{t:O,n:'target',p:35},
{t:V,n:'_blank',p:1},
{t:V,n:'_self',p:2},
{t:V,n:'_parent',p:3},
{t:V,n:'_top',p:4},
{t:O,n:'media',p:40},
{t:O,n:'hreflang',p:41},
{t:O,n:'charset',p:42},
{t:T,n:'map',u:'special/`.html',p:382},
{t:T,n:'menu',u:'lists/`.html',p:383},
{t:T,n:'meta',c:'head/`.html',p:384},
{t:O,n:'name',p:1},
{t:O,n:'scheme',p:2},
{t:T,n:'noframes',u:'frames/`.html',p:387},
{t:T,n:'noscript',u:'block/`.html',p:388},
{t:T,n:'object',c:'special/`.html',p:389},
{t:O,n:'data',p:1},
{t:O,n:'classid',p:2},
{t:O,n:'archive',p:3},
{t:O,n:'codebase',p:4},
{t:O,n:'width',p:5},
{t:O,n:'height',p:6},
{t:O,n:'name',p:7},
{t:O,n:'usemap',p:8},
{t:O,n:'type',p:9},
{t:O,n:'codetype',p:10},
{t:O,n:'standby',p:11},
{t:O,n:'tabindex',p:12},
{t:O,n:'align',p:13},
{t:V,n:'top',p:1},
{t:V,n:'middle',p:2},
{t:V,n:'bottom',p:3},
{t:V,n:'left',p:4},
{t:V,n:'right',p:5},
{t:O,n:'border',p:19},
{t:O,n:'hspace',p:20},
{t:O,n:'vspace',p:21},
{t:T,n:'ol',c:'lists/`.html',p:411},
{t:O,n:'type',p:1},
{t:V,n:'1',p:1},
{t:V,n:'a',p:2},
{t:V,n:'A',p:3},
{t:V,n:'i',p:4},
{t:V,n:'I',p:5},
{t:O,n:'start',p:7},
{t:T,n:'optgroup',u:'forms/`.html',p:419},
{t:T,n:'option',c:'forms/`.html',p:420},
{t:O,n:'value',p:1},
{t:O,n:'label',p:2},
{t:T,n:'p',c:'block/`.html',p:423},
{t:O,n:'align',p:1},
{t:V,n:'left',p:1},
{t:V,n:'center',p:2},
{t:V,n:'right',p:3},
{t:V,n:'justify',p:4},
{t:T,n:'param',c:'special/`.html',p:429},
{t:O,n:'value',p:1},
{t:O,n:'valuetype',p:2},
{t:V,n:'data',p:1},
{t:V,n:'ref',p:2},
{t:V,n:'object',p:3},
{t:O,n:'type',p:6},
{t:T,n:'pre',c:'block/`.html',p:436},
{t:O,n:'width',p:1},
{t:T,n:'q',c:'special/`.html',p:438},
{t:O,n:'cite',p:1},
{t:T,n:'s',u:'font`tyle/s.html',p:440},
{t:T,n:'samp',u:'phrase/`.html',p:441},
{t:T,n:'script',c:'special/`.html',p:442},
{t:O,n:'language',p:1},
{t:O,n:'src',p:2},
{t:O,n:'charset',p:3},
{t:T,n:'select',c:'forms/`.html',p:446},
{t:O,n:'name',p:1},
{t:O,n:'size',p:2},
{t:O,n:'tabindex',p:3},
{t:O,n:'onfocus',p:4},
{t:O,n:'onblur',p:5},
{t:O,n:'onchange',p:6},
{t:T,n:'small',u:'fontstyle/`.html',p:453},
{t:T,n:'span',u:'special/`.html',p:454},
{t:T,n:'strike',u:'fontstyle/`.html',p:455},
{t:T,n:'strong',u:'phrase/`.html',p:456},
{t:T,n:'style',c:'head/`.html',p:457},
{t:O,n:'media',p:1},
{t:O,n:'title',p:2},
{t:T,n:'sub',u:'special/`.html',p:460},
{t:T,n:'sup',u:'special/`.html',p:461},
{t:T,n:'table',c:'`s/table.html',p:462},
{t:O,n:'summary',p:1},
{t:O,n:'width',p:2},
{t:O,n:'border',p:3},
{t:O,n:'frame',p:4},
{t:V,n:'void',p:1},
{t:V,n:'above',p:2},
{t:V,n:'below',p:3},
{t:V,n:'hsides',p:4},
{t:V,n:'lhs',p:5},
{t:V,n:'rhs',p:6},
{t:V,n:'vsides',p:7},
{t:V,n:'box',p:8},
{t:V,n:'border',p:9},
{t:O,n:'rules',p:14},
{t:V,n:'none',p:1},
{t:V,n:'groups',p:2},
{t:V,n:'rows',p:3},
{t:V,n:'cols',p:4},
{t:V,n:'all',p:5},
{t:O,n:'cellspacing',p:20},
{t:O,n:'cellpadding',p:21},
{t:O,n:'align',p:22},
{t:V,n:'left',p:1},
{t:V,n:'center',p:2},
{t:V,n:'right',p:3},
{t:O,n:'bgcolor',p:26},
{t:T,n:'tbody',c:'tables/`.html',p:489},
{t:O,n:'align',p:1},
{t:V,n:'left',p:1},
{t:V,n:'center',p:2},
{t:V,n:'right',p:3},
{t:V,n:'justify',p:4},
{t:V,n:'char',p:5},
{t:O,n:'char',p:7},
{t:O,n:'charoff',p:8},
{t:O,n:'valign',p:9},
{t:V,n:'top',p:1},
{t:V,n:'middle',p:2},
{t:V,n:'bottom',p:3},
{t:V,n:'baseline',p:4},
{t:T,n:'td',c:'tables/`.html',p:503},
{t:O,n:'rowspan',p:1},
{t:O,n:'colspan',p:2},
{t:O,n:'headers',p:3},
{t:O,n:'abbr',p:4},
{t:O,n:'scope',p:5},
{t:V,n:'row',p:1},
{t:V,n:'col',p:2},
{t:V,n:'rowgroup',p:3},
{t:V,n:'colgroup',p:4},
{t:O,n:'axis',p:10},
{t:O,n:'align',p:11},
{t:V,n:'left',p:1},
{t:V,n:'center',p:2},
{t:V,n:'right',p:3},
{t:V,n:'justify',p:4},
{t:V,n:'char',p:5},
{t:O,n:'char',p:17},
{t:O,n:'charoff',p:18},
{t:O,n:'valign',p:19},
{t:V,n:'top',p:1},
{t:V,n:'middle',p:2},
{t:V,n:'bottom',p:3},
{t:V,n:'baseline',p:4},
{t:O,n:'width',p:24},
{t:O,n:'height',p:25},
{t:O,n:'bgcolor',p:26},
{t:T,n:'textarea',c:'forms/`.html',p:530},
{t:O,n:'name',p:1},
{t:O,n:'accesskey',p:2},
{t:O,n:'tabindex',p:3},
{t:O,n:'onfocus',p:4},
{t:O,n:'onblur',p:5},
{t:O,n:'onselect',p:6},
{t:O,n:'onchange',p:7},
{t:T,n:'tfoot',c:'tables/`.html',p:538},
{t:O,n:'align',p:1},
{t:V,n:'left',p:1},
{t:V,n:'center',p:2},
{t:V,n:'right',p:3},
{t:V,n:'justify',p:4},
{t:V,n:'char',p:5},
{t:O,n:'char',p:7},
{t:O,n:'charoff',p:8},
{t:O,n:'valign',p:9},
{t:V,n:'top',p:1},
{t:V,n:'middle',p:2},
{t:V,n:'bottom',p:3},
{t:V,n:'baseline',p:4},
{t:T,n:'th',c:'tables/`.html',p:552},
{t:O,n:'rowspan',p:1},
{t:O,n:'colspan',p:2},
{t:O,n:'headers',p:3},
{t:O,n:'abbr',p:4},
{t:O,n:'scope',p:5},
{t:V,n:'row',p:1},
{t:V,n:'col',p:2},
{t:V,n:'rowgroup',p:3},
{t:V,n:'colgroup',p:4},
{t:O,n:'axis',p:10},
{t:O,n:'align',p:11},
{t:V,n:'left',p:1},
{t:V,n:'center',p:2},
{t:V,n:'right',p:3},
{t:V,n:'justify',p:4},
{t:V,n:'char',p:5},
{t:O,n:'char',p:17},
{t:O,n:'charoff',p:18},
{t:O,n:'valign',p:19},
{t:V,n:'top',p:1},
{t:V,n:'middle',p:2},
{t:V,n:'bottom',p:3},
{t:V,n:'baseline',p:4},
{t:O,n:'width',p:24},
{t:O,n:'height',p:25},
{t:O,n:'bgcolor',p:26},
{t:T,n:'thead',c:'tables/`.html',p:579},
{t:O,n:'align',p:1},
{t:V,n:'left',p:1},
{t:V,n:'center',p:2},
{t:V,n:'right',p:3},
{t:V,n:'justify',p:4},
{t:V,n:'char',p:5},
{t:O,n:'char',p:7},
{t:O,n:'charoff',p:8},
{t:O,n:'valign',p:9},
{t:V,n:'top',p:1},
{t:V,n:'middle',p:2},
{t:V,n:'bottom',p:3},
{t:V,n:'baseline',p:4},
{t:T,n:'title',u:'head/`.html',p:593},
{t:T,n:'tr',c:'tables/`.html',p:594},
{t:O,n:'align',p:1},
{t:V,n:'left',p:1},
{t:V,n:'center',p:2},
{t:V,n:'right',p:3},
{t:V,n:'justify',p:4},
{t:V,n:'char',p:5},
{t:O,n:'char',p:7},
{t:O,n:'charoff',p:8},
{t:O,n:'valign',p:9},
{t:V,n:'top',p:1},
{t:V,n:'middle',p:2},
{t:V,n:'bottom',p:3},
{t:V,n:'baseline',p:4},
{t:O,n:'bgcolor',p:14},
{t:T,n:'tt',u:'fontstyle/`.html',p:609},
{t:T,n:'u',u:'fontstyle/`.html',p:610},
{t:T,n:'ul',c:'lists/`.html',p:611},
{t:O,n:'type',p:1},
{t:V,n:'disc',p:1},
{t:V,n:'square',p:2},
{t:V,n:'circle',p:3},
{t:T,n:'var',u:'phrase/`.html',p:616},
null);
finishModuleProcessing('module_html.js',tmp);