//<!--
//1@@m10

function EbayHTMLAnchor(pParent,pName,pDisabled,pCfg)
{if(!this.objType)
this.objType="EbayHTMLAnchor";this.base=EbayHTML;this.base(pParent,pName,pName,pDisabled,pCfg);this.getElem=ebHTMLAnchorGetElem;this.enableBase=this.enable;this.enable=ebHTMLAnchorEnable;this.subscribeEvents("onclick");}
function ebHTMLAnchorGetElem(pName)
{var d=this.oDocument.doc,l=null;l=d.links[pName];if(l)return l;if(d.getElementById)
l=d.getElementById(pName);if(l)return l;if(d.all)
l=d.all[pName];if(l)return l;if(d.layers)
{var lyrs=d.layers;var len=lyrs.length;for(var i=0;i<len;i++)
{l=this.getElem(lyrs[i].document,pName);if(l)
return l;}}
for(var j=0;j<d.links.length;j++)
{l=d.links[j];if(typeof(l.name)=="undefined")
{if(l.onclick)
{var oc=l.onclick.toString();if(oc.indexOf("{#"+pName+"#}")!=-1)
return l;}}
else
{if(l.name==pName)
return l;}
l=null;}
return l;}
function ebHTMLAnchorEnable(pEnable)
{var cur=(pEnable)?"hand":"default";var el=this.eElem;if(el&&el.style)
{el.style.cursor=cur;el.style.color=pEnable?"":"gray";}
this.enableBase(pEnable);}
function setEbayLink(pS)
{return true;}

//2@@m6

function EbayHTMLLayer(pParent,pName,pDisabled,pCfg)
{if(!this.objType)
this.objType="EbayHTMLLayer";this.base=EbayHTML;this.base(pParent,pName,pName,pDisabled,pCfg);this.aBindEvents=new Array;this.getElem=ebHTMLLayerGetElem;this.getValue=ebHTMLLayerGetValue;this.setValue=ebHTMLLayerSetValue;}
function ebHTMLLayerGetElem(pName)
{var s=pName,d=this.oDocument.doc;if(d.getElementById)
return d.getElementById(s);else if(d.all)
return d.all(s);this.throwWarning("Not supported","getElem");}
function ebHTMLLayerGetValue(pIsText)
{if(this.eElem)
{if(pIsText)
{if(this.oDocument.oGlobals.oClient.bFirefox)
return this.eElem.textContent;else
return this.eElem.innerText;}
else
return this.eElem.innerHTML;}
else
return"";}
function ebHTMLLayerSetValue(pVal,pIsText)
{if(this.eElem)
{if(pIsText)
{if(this.oDocument.oGlobals.oClient.bFirefox)
this.eElem.textContent=pVal;else
this.eElem.innerText=pVal;}
else
this.eElem.innerHTML=pVal;}}

//3@@m7

function EbayHTMLImage(pParent,pName,pDisabled,pSource,pDisabledSource,pCfg)
{if(!this.objType)
this.objType="EbayHTMLImage";this.base=EbayHTML;this.base(pParent,pName,pName,pDisabled,pCfg);this.sEnabledSource=this.sDisabledSource=pSource;if(pDisabledSource)
this.sDisabledSource=pDisabledSource;this.getElem=ebHTMLImageGetElem;this.source=ebHTMLImageSource;this.enableBase=this.enable;this.enable=ebHTMLImageEnable;this.subscribeEvents("onclick","onmouseover","onmouseout");}
function ebHTMLImageGetElem(pName)
{return this.getDocElem(pName,'images');}
function ebHTMLImageSource(pSrc,pText)
{var im=this.eElem;if(typeof(im)=='undefined')
return;if(typeof(pSrc)=="undefined")
return(im)?im.src:"";else
{im.src=pSrc;if(pText!=null)
im.alt=pText;}}
function ebHTMLImageEnable(pEnable)
{with(this)
{enableBase(pEnable);if(sDisabledSource&&eElem)
eElem.src=(pEnable)?sEnabledSource:sDisabledSource;}}

//4@@m4

function EbayDOMMouse(pParent,pName)
{if(!this.objType)
this.objType="EbayDOMMouse";this.base=EbayBaseControl;this.base(pParent,pName);this.iMouseX=this.iMouseY=-1;this.bMonitorDrag=false;this.oDOMEvent=null;with(this)
_registerListener(oDocument._getEvent("unload"),EVENT_BEFORE,"onBeforeDocumentUnload");this.onmousemove=function(pEvent)
{try
{ebay.oDocument.oMouse.setMouseData(pEvent);}
catch(e){}
ebay.oDocument.oMouse.aftermousemove(pEvent);}
this.onmousedown=function(pEvent)
{ebay.oDocument.oMouse.setMouseData(pEvent);jsObj._exec("mousedown");}
this.onmouseup=function(pEvent)
{var od=ebay.oDocument.oMouse;od.setMouseData(pEvent);od.bMonitorDrag=false;jsObj._exec("mouseup");}
this.registerEvents=function()
{with(this.parent)
{registerDocEvent("mousedown","","doc",typeof(doc.onmousedown),"oMouse");registerDocEvent("mouseup","","doc",typeof(doc.onmouseup),"oMouse");doc.onmousemove=this.onmousemove;}}
this.setMouseData=function(pEvent)
{var evt=pEvent||event;this.iMouseX=evt.clientX;this.iMouseY=evt.clientY;this.oDOMEvent=evt;}
this.onBeforeDocumentUnload=function()
{var d=this.oDocument.doc;d.onmousedown=d.onmouseup=onmousemove=null;}
this.aftermousemove=function(){}}
ebay.oDocument.oMouse=new EbayDOMMouse(ebay.oDocument,"Mouse Events");ebay.oDocument.oMouse.registerEvents();

//5@@m2

function DebugInfo()
{this.aStartTime=new Array();this.aData=new Array();this.add=function(pName,pNum)
{if(!this.aData[pName])
{this.aData[pName]=new Array();this.aData[pName]['number']=0;this.aData[pName]['count']=0;}
this.aData[pName]['number']+=pNum;this.aData[pName]['count']++;}
this.serialize=function()
{with(this)
{var strReturn='';for(var n in aData)
{var data=aData[n],dataNum=data['number'],dataCount=data['count'];strReturn+=n+'\n';strReturn+='total = '+dataNum+'\n';strReturn+='average = '+dataNum/(dataCount==0?1:dataCount)+'\n';strReturn+='count = '+dataCount+'\n';strReturn+='==========================\n';}
return strReturn;}}
this.getCurTime=function()
{var d=new Date();return d.getTime();}
this.start=function()
{this.aStartTime.push(this.getCurTime());}
this.end=function()
{return(this.getCurTime()-this.aStartTime.pop());}}
if(!ebay.oDocument.oPage.oDebugInfo)
ebay.oDocument.oPage.oDebugInfo=new DebugInfo();

//6@@m7

function EbaySavedSearchContentLayer(pParent,pName,pCfg)
{if(!this.objType)
this.objType="EbaySavedSearchContentLayer";this.base=EbayHTMLLayer;this.base(pParent,pName,pCfg);this.cl=this.oGlobals.oClient;this.bUseIfShim=pCfg?pCfg.bUseIfShim:true;this.bUseIfShim=this.bUseIfShim&&(this.cl.bIE&&!this.cl.bMac);this.bCalWidth=this.cl.bIE&&!this.cl.bMac;this.eIframeShim=null;this.eDivMask=null;this.bShowMask=pCfg?pCfg.bShowMask:false;this.iMaskBottom=0;this.iMaskRight=0;this.iMaskWidth=0;this.sMaskColor='#cccccc';this.iframeTopOffset=0;this.iframeBottomOffset=0;this.bAutoScroll=false;this.showBase=this.show;this.setShowMask=function(pShow,pBottom,pRight,pWidth,pBgColor)
{this.bShowMask=pShow;this.iMaskBottom=typeof(pBottom)!='undefined'?pBottom:this.iMaskBottom;this.iMaskRight=typeof(pRight)!='undefined'?pRight:this.iMaskRight;this.iMaskWidth=typeof(pWidth)!='undefined'?pWidth:this.iMaskWidth;this.sMaskColor=typeof(pBgColor)!='undefined'?pBgColor:this.sMaskColor;}
this.setUserIframeShim=function(pUse)
{var cl=this.oGlobals.oClient;this.bUseIfShim=pUse&&(cl.bIE&&!cl.bMac);}
this.showByElem=function(pShow,pParent,pLeftOffset,pTopOffset,pIsAuto,pIsSkipRel)
{with(this)
{if(pShow)
{var l_parentPos=getAbsolutePos(pParent,pIsSkipRel);if(l_parentPos)
{var l_left=l_parentPos['left']+pLeftOffset,l_top=l_parentPos['top']+l_parentPos['height']+pTopOffset;show(pShow,l_left,l_top,pIsAuto);}}
else
show(pShow);}}
this.show=function(pShow,pLeft,pTop,pIsAuto)
{with(this)
{if(eElem)
{eElem.style.top=ebay.oGlobals.oClient.getScrollHeight()+'px';eElem.style.left='0px';}
showBase(pShow);if(pShow)
{if(eElem)
{pIsAuto=(typeof(pIsAuto)=='undefined')?true:pIsAuto;pLeft=parseInt(pLeft);pTop=parseInt(pTop);if(pIsAuto)
{var sleft=ebay.oGlobals.oClient.getScrollLeft(),cw=ebay.oGlobals.oClient.getBrowserWindowWidth(),sw=ebay.oGlobals.oClient.getScrollWidth();if((pLeft+width()+iMaskRight)>cw)
{pLeft=sleft+cw-width()-iMaskRight;if(!(cl.bIE&&!cl.bMac))
pLeft=pLeft-20;}}
eElem.style.left=pLeft+'px';eElem.style.top=pTop+'px';if(cl.bIE&&!cl.bMac)
{subscribeEvents('onresize');var evt=_registerEvent('onresize');_registerListener(evt,EVENT_AFTER,'onResize');}}
if(bAutoScroll)
{var myBottom=pTop+height(),winBottom=ebay.oGlobals.oClient.getScrollTop()+ebay.oGlobals.oClient.getBrowserWindowHeight();if((myBottom>winBottom)&&ebay.oDocument.win.scrollBy)
{ebay.oDocument.win.scrollBy(0,myBottom-winBottom);}}
if(bUseIfShim)
setIframeShim();if(bShowMask)
showMask();}
else
{if(bUseIfShim&&eIframeShim&&eElem)
{if(eIframeShim.parentElement)
eElem.removeChild(eIframeShim);}
if(bShowMask&&eDivMask&&eElem)
{if(eDivMask.parentElement)
eElem.removeChild(eDivMask);}
if(cl.bIE&&!cl.bMac)
{var evt=_getEvent('onresize');if(evt)
_unregisterListener(evt,EVENT_AFTER,'onResize');}}}}
this.setIframeShim=function()
{with(this)
{if(eElem)
{if(eIframeShim)
{if(eIframeShim.parentElement)
eElem.removeChild(eIframeShim);}
var d=oDocument;var w=width(),h=height(),f=eIframeShim?eIframeShim:d.createElement('IFRAME'),eIframeShim=f;with(f.style)
{position='absolute';top=this.iframeTopOffset+'px';left='0px';zIndex=-1;width=w+'px';height=h-this.iframeTopOffset-this.iframeBottomOffset+'px';}
f.frameBorder='0';eElem.appendChild(f);}}}
this.resizeIframeShim=function()
{if(!this.eElem)return;if(this.eIframeShim)
{this.eIframeShim.style.width=this.width()+'px';this.eIframeShim.style.height=this.height()-this.iframeTopOffset-this.iframeBottomOffset+'px';}}
this.showMask=function()
{if(!this.eElem)return;if(this.eDivMask)
{if(this.eDivMask.parentElement)
this.eElem.removeChild(this.eDivMask);}
var l_d=this.oDocument;var l_div=this.eDivMask?this.eDivMask:l_d.createElement('DIV');this.eDivMask=l_div;l_div.style.position='absolute';l_div.style.top=this.iMaskBottom+'px';l_div.style.left=this.iMaskRight+'px';l_div.style.zIndex=-1;l_div.style.width=this.width()+'px';l_div.style.height=this.height()+'px';l_div.style.backgroundColor=this.sMaskColor;this.eElem.appendChild(l_div);}
this.resizeMask=function()
{if(!this.eElem)return;if(this.eDivMask)
{this.eDivMask.style.width=this.width()+'px';this.eDivMask.style.height=this.height()+'px';}}
this.getAbsolutePos=function(obj,bSkipRel)
{if(!obj)return null;var top=obj.offsetTop,left=obj.offsetLeft,height=obj.offsetHeight,width=obj.offsetWidth;var pos="",of="";while(obj=obj.offsetParent)
{if(bSkipRel)
{pos=obj.currentStyle?obj.currentStyle.position:window.getComputedStyle(obj,null).getPropertyValue("position");of=obj.currentStyle?obj.currentStyle.overflow:window.getComputedStyle(obj,null).getPropertyValue("overflow");if(pos=='absolute'||pos=='relative'||(of!='visible'&&of!=''))
{break;}}
top+=obj.offsetTop;left+=obj.offsetLeft;}
return{'left':left,'top':top,'height':height,'width':width};}
this.getLayerPos=function()
{with(this.eElem.style)
{return{'left':parseInt(left),'top':parseInt(top)};}}
this.resize=function()
{with(this)
{var curPos=getLayerPos();show(true,curPos['left'],curPos['top'],false);}}
this.onResize=function()
{if(this.eElem&&this.eElem.style.visibility=='visible')
{if(this.bUseIfShim)
this.resizeIframeShim();if(this.bShowMask)
this.resizeMask();}}
this.moveTo=function(pLeft,pTop)
{pLeft=parseInt(pLeft);pTop=parseInt(pTop);this.eElem.style.left=pLeft+'px';this.eElem.style.top=pTop+'px';}}

//7@@m3

function EbayOverLayCombo(pParent,pLinkName,pLayerName)
{if(!this.objType)
this.objType="EbayOverLayCombo";this.base=EbayBaseControl;this.base(pParent,pLinkName+'_'+pLayerName+'_combo');this.sLinkName=pLinkName;this.sLayerName=pLayerName;this.sMaskName='EbayOverLayCombo_mask';this.oLink=this.oLayer=this.oMask=null;this.bInitDone=false;this.iShowDelay=1000;this.iHideDelay=1000;this.oTimerShow=this.oTimerHide=null;this.bVisible=this.bMouseIn=false;this.bInLockMode=this.bUseLock=this.bUseMask=false;this.bHandleClick=this.bHandleIn=this.bHandleOut=true;this.bSimpleMode=false;this.bMonitorDrag=this.bSupportDrag=false;this.iLastLeft=this.iLastTop=-1;this.iMoveTimeout=50;this.iInitialTimeout=250;this.iHotspotLeft=this.iHotspotTop=0;this.iHotspotRight=this.iHotspotBottom=-1;this.bAutoWidth=true;this.bSupportHotspot=false;this.bAutoScroll=false;this.debugDiv=null;this.linkClick=function()
{this._exec('onLinkClick');return false;}
this.onLinkClick=function()
{with(this)
{if(!isElementReady())return;if((bUseLock&&bInLockMode)||!bHandleClick)return;if(bUseLock)
bInLockMode=true;showLayer();if(this.bUseMask)
this.showMask(true);}}
this.onLinkIn=function()
{with(this)
{if(!isElementReady())return;bMouseIn=true;clearTimer();if((bUseLock&&bInLockMode)||!bHandleIn)return;setShowTimer();}}
this.onLinkOut=function()
{with(this)
{if(!isElementReady())return;bMouseIn=false;clearTimer();if((bUseLock&&bInLockMode)||!bHandleOut)return;setHideTimer();}}
this.onLayerIn=function()
{with(this)
{if(!isElementReady())return;logInfo('<br/>onLayerIn',true);bMouseIn=true;if(bUseLock&&bInLockMode)return;clearTimer();}}
this.onLayerOut=function()
{with(this)
{if(!isElementReady())return;logInfo('<br/>onLayerOut',true);bMouseIn=false;clearTimer();if((bUseLock&&bInLockMode)||!bHandleOut)return;setHideTimer();}}
this.onLayerClick=function()
{if(!this.isElementReady())return;if(this.bUseLock&&this.bVisible&&!this.bInLockMode)
{this.bInLockMode=true;if(this.bUseMask)
this.showMask(true);}}
this.onDocMouseUp=function(pEvent)
{with(this)
{if(!isElementReady())return;logInfo('<br/>onDocMouseUp: ',true);logInfo('bMouseIn='+bMouseIn+';',true);if(this.bSupportDrag)
{this.stopDrag();}
if(bUseLock&&bInLockMode)return;if(!bMouseIn)
{clearTimer();hideLayer();}}}
this.onLayerUp=function()
{if(!this.isElementReady())return;if(this.bSupportDrag)
{this.stopDrag();}}
this.onLayerDown=function()
{if(!this.isElementReady())return;if(this.bSupportDrag)
{this.startDrag();}}
this.bind=function()
{var oDI=ebay.oDocument.oPage.oDebugInfo;oDI.start()
if(this.oLink)
this.oLink.bind();if(this.oLayer)
this.oLayer.bind();if(this.oMask)
this.oMask.bind();oDI.add(this.objType+'.bind()',oDI.end());}
this.clearTimer=function()
{with(this)
{if(oTimerHide)
{window.clearTimeout(oTimerHide);oTimerHide=null;}
if(oTimerShow)
{window.clearTimeout(oTimerShow);oTimerShow=null;}}}
this.setHideTimer=function()
{with(this)
{var sTimeOut=oUtils.controlPath(this)+'.hideLayer()';oTimerHide=window.setTimeout(sTimeOut,iHideDelay);}}
this.setShowTimer=function()
{with(this)
{var sTimeOut=oUtils.controlPath(this)+'.showLayer()';oTimerShow=window.setTimeout(sTimeOut,iShowDelay);}}
this.showLayer=function()
{with(this)
{if(oTimerShow)
{window.clearTimeout(oTimerShow);oTimerShow=null;}
if(bVisible)return;processLayerData();if(!bSimpleMode)
_registerListener(oDocument._getEvent('mouseup'),EVENT_AFTER,'onDocMouseUp');}}
this.startDrag=function()
{var oM=ebay.oDocument.oMouse,x=parseInt(oM.iMouseX),y=parseInt(oM.iMouseY);var sx=+ebay.oGlobals.oClient.getScrollLeft(),sy=+ebay.oGlobals.oClient.getScrollTop()
if(this.bSupportHotspot)
{var curPos=this.oLayer.getLayerPos(),l=parseInt(curPos['left']),t=parseInt(curPos['top']);if(this.bAutoWidth)
this.iHotspotRight+=parseInt(this.oLayer.width());if((x+sx>l+this.iHotspotLeft)&&(x+sx<l+this.iHotspotRight)&&(y+sy>t+this.iHotspotTop)&&(y+sy<t+this.iHotspotBottom))
{this.bMonitorDrag=true;this.iLastLeft=x;this.iLastTop=y;window.setTimeout(this.oUtils.controlPath(this)+".monitorMouseDrag(false)",this.iInitialTimeout);}}else
{this.bMonitorDrag=true;this.iLastLeft=x;this.iLastTop=y;window.setTimeout(this.oUtils.controlPath(this)+".monitorMouseDrag(false)",this.iInitialTimeout);}}
this.stopDrag=function()
{this.bMonitorDrag=false;}
this.monitorMouseDrag=function(pSetStyle)
{var oM=ebay.oDocument.oMouse;if(this.bMonitorDrag)
{if(pSetStyle)
this.oLayer.setStyle("position","absolute");var l=parseInt(oM.iMouseX),t=parseInt(oM.iMouseY);if((l!=this.iLastLeft)||(t!=this.iLastTop))
{var dx=l-this.iLastLeft,dy=t-this.iLastTop;var curPos=this.oLayer.getLayerPos();this.oLayer.moveTo(curPos['left']+dx,curPos['top']+dy);this.iLastLeft=l;this.iLastTop=t;}
setTimeout(this.oUtils.controlPath(this)+".monitorMouseDrag()",this.iMoveTimeout);}}
this.setHotspot=function(pBAuto,pLeft,pTop,pWidth,pHeight)
{this.bAutoWidth=pBAuto;this.bSupportHotspot=true;this.iHotspotLeft=pLeft?pLeft:this.iHotspotLeft;this.iHotspotTop=pTop?pTop:this.iHotspotTop;if(pBAuto)
this.iHotspotRight=pWidth?pWidth:this.iHotspotRight;else
this.iHotspotRight=pWidth?(this.iHotspotLeft+pWidth):this.iHotspotRight;this.iHotspotBottom=pHeight?(this.iHotspotTop+pHeight):this.iHotspotBottom;}
this.setHotspotTitlebar=function(pWidth,pHeight)
{this.setHotspot(true,0,0,pWidth,pHeight);}
this.processLayerData=function()
{with(this)
{lo=oLink.width()/2;oLayer.showByElem(true,oLink.eElem,lo,0);bVisible=true;bInLockMode=false;}}
this.hideLayer=function()
{with(this)
{if(oTimerHide)
{window.clearTimeout(oTimerHide);oTimerHide=null;}
if(!bVisible)return;oLayer.show(false);bVisible=false;bInLockMode=false;if(bUseMask)
showMask(false);if(!bSimpleMode)
_unregisterListener(oDocument._getEvent('mouseup'),EVENT_AFTER,'onDocMouseUp');}}
this.setDelay=function(pShowDelay,pHideDelay)
{with(this)
{iShowDelay=(pShowDelay==null)?pShowDelay:iShowDelay;iHideDelay=(pHideDelay==null)?pHideDelay:iHideDelay;}}
this.createLinkObj=function()
{with(this)
{var oDI=ebay.oDocument.oPage.oDebugInfo;oDI.start();if(!oLink)
oLink=new EbayHTMLAnchor(this,sLinkName);oDI.add(objType+'.createLinkObj()',oDI.end());}}
this.createLayerObj=function()
{with(this)
{if(!oLayer)
oLayer=new EbaySavedSearchContentLayer(this,sLayerName);oLayer.bAutoScroll=bAutoScroll;}}
this.createMaskObj=function()
{with(this)
{if(!oMask)
{oMask=new EbayMaskLayer(this,sMaskName);}}}
this.createMaskElement=function()
{this.oMask._createElement();}
this.createElements=function()
{if(this.bUseMask)
this.createMaskElement();}
this.showMask=function(pShow)
{if(this.oMask&&this.oMask.eElem)
this.oMask.show(pShow);}
this.setUserIframeShim=function(pUse)
{this.oLayer.setUserIframeShim(pUse);}
this.setShowMask=function(pShow,pBottom,pRight,pWidth,pColor)
{this.oLayer.setShowMask(pShow,pBottom,pRight,pWidth,pColor);}
this.isElementReady=function()
{with(this)
{return(oLink.eElem&&oLayer.eElem&&(bUseMask?oMask.eElem:true));}}
this.initEvents=function()
{with(this)
{if(bInitDone)return;if(bSimpleMode)
initEventsSimple();else
initEventsFull();bInitDone=true;}}
this.initEventsFull=function()
{with(this)
{oLink.subscribeEvents('onmouseover','onmouseout','onclick');var evtLinkIn=oLink._registerEvent('onmouseover'),evtLinkOut=oLink._registerEvent('onmouseout'),evtLinkClick=oLink._registerEvent('onLinkClick');oLink.onclick=linkClick;oLayer.subscribeEvents('onclick','onmouseup','onmousedown');var evtLayerIn,evtLayerOut,evtLayerClick,evtLayerUp,evtLayerDown;if(oDocument.doc.all)
{oLayer.subscribeEvents('onmouseenter','onmouseleave');evtLayerIn=oLayer._registerEvent('onmouseenter');evtLayerOut=oLayer._registerEvent('onmouseleave');}
else
{oLayer.subscribeEvents('onmouseover','onmouseout');evtLayerIn=oLayer._registerEvent('onmouseover');evtLayerOut=oLayer._registerEvent('onmouseout');}
evtLayerClick=oLayer._registerEvent('onclick');if(bHandleClick)
_registerListener(evtLinkClick,EVENT_BEFORE,'onLinkClick');_registerListener(evtLinkIn,EVENT_BEFORE,'onLinkIn');_registerListener(evtLayerIn,EVENT_BEFORE,'onLayerIn');_registerListener(evtLinkOut,EVENT_BEFORE,'onLinkOut');_registerListener(evtLayerOut,EVENT_BEFORE,'onLayerOut');_registerListener(evtLayerClick,EVENT_BEFORE,'onLayerClick');if(bSupportDrag)
{evtLayerUp=oLayer._registerEvent('onmouseup');evtLayerDown=oLayer._registerEvent('onmousedown');_registerListener(evtLayerUp,EVENT_BEFORE,'onLayerUp');_registerListener(evtLayerDown,EVENT_BEFORE,'onLayerDown');}}}
this.initEventsSimple=function()
{with(this)
{var evtLinkClick=oLink._registerEvent('onLinkClick');oLink.onclick=linkClick;if(bHandleClick)
_registerListener(evtLinkClick,EVENT_BEFORE,'onLinkClick');}}
this.init=function()
{var oDI=ebay.oDocument.oPage.oDebugInfo;this.createLinkObj();oDI.start();this.createLayerObj();var layerDelay=oDI.end();oDI.add(this.objType+'.createLayerObj()',layerDelay);oDI.start();if(this.bUseMask)
this.createMaskObj();var maskDelay=oDI.end();oDI.add(this.objType+'.createMaskObj()',maskDelay);oDI.start();this.initEvents();var eventDelay=oDI.end();oDI.add(this.objType+'.initEvents()',eventDelay);}
this.setupDebug=function()
{with(this)
{debugDiv=ebay.oDocument._getControl('ej2_debug_layer');if(!debugDiv)
{debugDiv=new EbayHTMLLayer(this,'ej2_debug_layer');debugDiv.bind();}}}
this.logInfo=function(pMsg,bAppend)
{with(this)
{if(debugDiv)
{var msg=debugDiv.getValue();if(bAppend)
msg+=pMsg;debugDiv.setValue(msg,false);debugDiv.show(true);}}}}

//8@@m1

function EbayBubbleHelpDisplay(pParent,pName,pCfg)
{var oCJ=ebay.oDocument.oCookieJar,signin=oCJ.readCookie("ebaysignin");if(!signin.has("in"))return;if(!this.objType)
this.objType="EbayBubbleHelpDisplay";this.base=EbayHTML;this.base(pParent,pName,pName,false,pCfg);oCfg=this.oCfg=pCfg;for(var i=0;i<oCfg.aElemIds.length;i++)
{var ln=oCfg.aElemIds[i];var oC=new EbayOverLayCombo(this,ln,oCfg.sLayer);oC.bHandleClick=false;oC.linkClick=function(){ebay.oDocument.oPage.setAutoLoadCookieBit(1)};oC.init();oC.setDelay(1000,3000);}}
// b=10597871 -->