//<!--
//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@@m11

function EbayHTMLPopup(pParent,pName,pCfg)
{if(!this.objType)
this.objType="EbayHTMLPopup";this.base=EbayBaseControl;this.base(pParent,pName);this.oConfig=pCfg||null;if(!pCfg)
{this.sUrl="";this.iWidth=this.iHeight=this.iLeft=this.iTop=null;this.bToolbar=this.bLocation=this.bStatus=this.bScrollbars=this.bResizable=this.bMenubar=true;}
else
{var u="undefined";this.sUrl=typeof(pCfg.sUrl)!=u?pCfg.sUrl:"";this.iWidth=typeof(pCfg.iWidth)!=u?pCfg.iWidth:null;this.iHeight=typeof(pCfg.iHeight)!=u?pCfg.iHeight:null;this.iLeft=typeof(pCfg.iLeft)!=u?pCfg.iLeft:null;this.iTop=typeof(pCfg.iTop)!=u?pCfg.iTop:null;this.bToolbar=typeof(pCfg.bToolbar)!=u?pCfg.bToolbar:true;this.bLocation=typeof(pCfg.bLocation)!=u?pCfg.bLocation:true;this.bStatus=typeof(pCfg.bStatus)!=u?pCfg.bStatus:true;this.bScrollbars=typeof(pCfg.bScrollbars)!=u?pCfg.bScrollbars:true;this.bResizable=typeof(pCfg.bResizable)!=u?pCfg.bResizable:true;this.bMenubar=typeof(pCfg.bMenubar)!=u?pCfg.bMenubar:true;}
this.oWin=null;this.sProps=this.sCustomProps="";this.bModal=false;this.sSavedFocusFunction=null;this.iHBuffer=this.iWBuffer=0;this.show=ebHTMLPopupShow;this.getParamString=ebHTMLGetParamString;this.modality=ebHTMLModality
this.showEx=ebHTMLPopupShowEx;this.resizeParent=ebHTMLPopupResizeParent;this.close=ebHTMLPopupClose;this.focus=ebHTMLPopupFocus;this.sizeToContent=ebHTMLPopupSizeToContent;this.clearControls=ebHTMLPopupClearControls;}
function ebHTMLPopupShow(pIsPopUnder)
{var bPopUnder=(typeof(pIsPopUnder)!="undefined"&&pIsPopUnder)?true:false;with(this)
{if(sUrl.length==0)
return null;var sP=getParamString();var oD=oDocument,tWin=oD.win;oD.setGlobalParent(this);modality(tWin);if(sUrl.has("ej2child=true")&&!sUrl.has("ej2parent="))
sUrl+="&ej2parent="+name;var w=tWin.open(sUrl,name,sP);if(bPopUnder)
w.blur();if(w&&!bPopUnder)
w.focus();oWin=w;return w;}}
function ebHTMLGetParamString()
{with(this)
{sP=(iWidth!=null)?",width="+iWidth:"";sP+=(iHeight!=null)?",height="+iHeight:"";sP+=(iLeft!=null)?",screenX="+iLeft+",left="+iLeft:"";sP+=(iTop!=null)?",screenY="+iTop+",top="+iTop:"";sP+=",toolbar="+((bToolbar)?"1":"0");sP+=",location="+((bLocation)?"1":"0");sP+=",status="+((bStatus)?"1":"0");sP+=",scrollbars="+((bScrollbars)?"1":"0");sP+=",resizable="+((bResizable)?"1":"0");sP+=",menubar="+((bMenubar)?"1":"0");sP+=(sCustomProps.length>0)?","+sCustomProps:"";if(sP.length>0)
sP=sP.substring(1);sProps=sP;return sP;}}
function ebHTMLModality(pWin)
{if(pWin)
{with(this)
{if(bModal)
{pWin.g_ebPopupObject=this;sSavedFocusFunction=pWin.onfocus;pWin.onfocus=function()
{try
{g_ebPopupObject.focus();}
catch(e)
{}}}}}}
function ebHTMLPopupShowEx(pUrl,pWidth,pHeight,pToolbar,pLocation,pStatus,pScrollbars,pResizable,pMenubar,pLeft,pTop,pCustomsProps,pModal,pWBuffer,pHBuffer)
{with(this)
{if(pUrl)
sUrl=pUrl;iWidth=pWidth;iHeight=pHeight;iLeft=pLeft;iTop=pTop;bToolbar=pToolbar;bLocation=pLocation;bStatus=pStatus;bScrollbars=pScrollbars;bResizable=pResizable;bMenubar=pMenubar;if(pCustomsProps)
sCustomProps=pCustomsProps;bModal=pModal;iHBuffer=pHBuffer;iWBuffer=pWBuffer;return show();}}
function ebHTMLPopupResizeParent(pX,pY,pW,pH)
{var p=this.parent;if(p)
{if(!isNaN(pX)&&!isNaN(pY))
p.moveTo(pX,pY);if(!isNaN(pW)&&!isNaN(pH))
p.resizeTo(pW,pH);}}
function ebHTMLPopupClose()
{with(this)
{if(bModal)
oDocument.win.onfocus=sSavedFocusFunction;oDocument.closeWindow(oWin);}
this.clearControls();}
function ebHTMLPopupClearControls()
{this.controls=[];}
function ebHTMLPopupFocus()
{var w=this.oWin;if(w&&!w.closed)
w.focus();else
this.close();}
function ebHTMLPopupSizeToContent()
{with(this)
{var c=oGlobals.oClient;if(!(c.bNav&&(c.iVer<5)))
{var ims=oWin.document.images,len=ims.length;var bottom=0,right=0,cB,cR;for(var i=0;i<len;i++)
{cB=ims[i].offsetTop+ims[i].offsetHeight;cR=ims[i].offsetLeft+ims[i].offsetWidth;if(cB>bottom)bottom=cB;if(cR>right)right=cR;}
oWin.resizeTo(right+iWBuffer,bottom+iHBuffer);}}}

//3@@m23

function EbayHTMLFrame(pParent,pName,pCfg)
{if(!this.objType)
this.objType="EbayHTMLFrame";this.base=EbayHTML;this.base(pParent,pName,pName,false,pCfg);this.eFrameElem=null;this.getElem=ebHTMLFrameGetElem;this.bindHTML=ebHTMLFrameBindHTML;this.bindEvents=this.enable=function(){};this.setSource=ebHTMLFrameSetSource;this.cleanupMemoryBase=this.cleanupMemory;this.cleanupMemory=ebHTMLFrameCleanupMemory;this.resize=ebHTMLFrameResize;this.onBeforeResize=this.onAfterResize=null;}
function ebHTMLFrameGetElem(pName)
{with(this)
{var f=null,oD=oDocument;var d=oD.doc,w=oD.win;if(w.frames)
f=eFrameElem=w.frames[pName];if(d.getElementById)
f=d.getElementById(pName);return f;}}
function ebHTMLFrameBindHTML()
{with(this)
{eElem=getElem(sElemName);if(eElem)
assignJSObject(eElem);}}
function ebHTMLFrameCleanupMemory()
{this.cleanupMemoryBase();this.eFrameElem=null;}
function ebHTMLFrameSetSource(pURL)
{if(pURL==null||pURL.trim()==''){return;}
with(this)
{oDocument.setGlobalParent(this);if(pURL.has("ej2child=true"))
pURL+="&ej2parent="+name;if(eFrameElem)
eFrameElem.location.replace(pURL);else if(eElem)
eElem.src=pURL;}}
function ebHTMLFrameResize(pMaxWidth)
{with(this)
{if(onBeforeResize)
onBeforeResize();var f=eFrameElem;if(!f||!(f.document||f.contentDocument))
f=getElem(sElemName);if(f&&typeof(f.document)!="unknown")
{var oDoc=f.document?f.document:f.contentDocument,db=oDoc.body,es=eElem.style,c=this.parent.oGlobals.oClient,w="100%",h=db.offsetHeight,oh;if(c.bSafari)
{oh=db.offsetHeight;w=oDoc.width;h=ebay.oDocument.doc.doctype!=null?oDoc.height+15:oDoc.height+1;}
else if(c.bFirefox)
{w=oDoc.width;h=oDoc.height}
else if(c.bWin||c.bOpera)
{w=db.scrollWidth;h=c.bNav&&ebay.oDocument.doc.doctype!=null?db.scrollHeight+30:db.scrollHeight;}
if(pMaxWidth&&c.bFirefox)
w="100%";if(this.oConfig)
{w=this.oConfig.iWidth||w;h=this.oConfig.iHeight||h;}
es.width=(w=="100%")?w:w+"px";es.height=h+"px";if(onAfterResize)
onAfterResize();}}}

//4@@m7

ebay.oDocument.oPage.onBeforeLoad=function()
{var c=ebay.oDocument.getConfig("Half.ShoppingCart.Popup");if(c)
{var oViewPopupGetHelp=new EbayHTMLPopup(this,"GetHelpOnCookies",c);var oAnchPopupGetHelp=new EbayHTMLAnchor(this,c.sPopAnchIdGetHelp);oAnchPopupGetHelp._registerEvent("onclick","onClick");oAnchPopupGetHelp.onClick=function()
{oViewPopupGetHelp.sUrl=c.sUrlGetHelp;oViewPopupGetHelp.show();}
var oViewPopupBPP=new EbayHTMLPopup(this,"BuyerProtectionPolicy",c);var oAnchPopupBPP=new EbayHTMLAnchor(this,c.sPopAnchIdBPP);oAnchPopupBPP._registerEvent("onclick","onClick");oAnchPopupBPP.onClick=function()
{oViewPopupBPP.sUrl=c.sUrlBPP;oViewPopupBPP.show();}
var oViewPopupSOS=new EbayHTMLPopup(this,"SavingOnShipping",c);var oAnchPopupSOS=new EbayHTMLAnchor(this,c.sPopAnchIdSOS);oAnchPopupSOS._registerEvent("onclick","onClick");oAnchPopupSOS.onClick=function()
{oViewPopupSOS.sUrl=c.sUrlGSOS;oViewPopupSOS.show();}}
var env=this.parent.oGlobals.oEnvironment
var sQA=env.sThisPagePath.has(env.sQADomain)?"qa":"prod";sQA=sQA+"half";this.trackLink=function(pOc)
{var aLinkInfo=pOc.aLinkInfo;for(i=0,l=aLinkInfo.length;i<l;i++)
{var oAnchLink=new EbayHTMLAnchor(this,aLinkInfo[i][0]);oAnchLink.sCoord=aLinkInfo[i][1];oAnchLink.onclick=function()
{s_linkType='o';s_linkName=this.sCoord;s_lnk=s_co(this.eElem);s_gs(sQA);return true;}}}
var oC=ebay.oDocument.getConfig("Half.Upsell.LinkTracking");if(oC)
{this.trackLink(oC);}
var oCg=ebay.oDocument.getConfig("Half.Cart.LinkTracking");if(oCg)
{this.trackLink(oCg);}
var oCfg=ebay.oDocument.getConfig("Half.ShoppingCart.ViewCart");if(oCfg)
{this._registerListener(this.oDocument._getEvent("load"),this.EVENT_AFTER,"execAfterLoad");this.execAfterLoad=function()
{with(this)
{oFrame=new EbayHTMLFrame(this,oCfg.sModuleName);oFrame.bind();oFrame.setSource(oCfg.sModuleUrl);}}
this.resizeAfterLoad=function()
{oFrame.setStyle("display","block");oFrame.onAfterResize=function()
{with(this)
{var oCl=this.oGlobals.oClient;width("100%");if(oCl.bFirefox||oCl.bNav)
height(height()+18);}}
oFrame.resize();}
if(oCfg.aLinkInfo)
{this.trackLink(oCfg);}}
ebay.oDocument.doc.onclick=function(e)
{var c=ebay.oDocument.getConfig("Half.ProductDetailsPage");if(c)
{var pEvent=window.event?window.event:e;var elem=pEvent.srcElement||pEvent.target;if(elem==null||elem==undefined)
{return;}
var paramName=c.sParamName;var sUrl=c.sLinkURL;var sUrl=c.sLinkURL+"&"+c.sParamName;if(elem.id=='_sp')
{elem.href=sUrl;alert(elem.href);}
if(elem.id=='_sp1')
{document.getElementById('_sp').href=sUrl;}}}}

//5@@m2

ebay.oDocument.oPage.createConfig=function()
{var c=ebay.oDocument.addConfig(new EbaySiteCatalystConfig("siteCatalyst"));c.turnOnTracking=1;}
ebay.oDocument.oPage.createConfig();

//6@@m40

function EbaySiteCatalystFiles(pParent,pName)
{if(!this.objType)
this.objType="EbaySiteCatalystFiles";this.base=EbayBaseControl;this.base(pParent,pName);var env=this.oGlobals.oEnvironment;this.aFiles=new Array;var pd=this.sPackageDir=env.sIncludeHost+"js/"+env.sTrainId+"/"+env.sCountry+"/features/site_catalyst/";this.sPageNamesDir=pd+"pagenames/";this.sPropertyReportsDir=pd+"property_reports/";this.sEventsDir=pd+"events/";this.sCookiesDir=pd+"cookies/";this.add=function()
{var args=arguments,aLen=args.length,fs=this.aFiles;for(var i=0;i<aLen;i++)
{var found=false,len=fs.length;for(var j=0;j<len&&!found;j++)
found=(fs[j]==args[i]);if(!found)
fs[len]=args[i];}}}
function EbaySiteCatalystConfig(pName)
{if(!this.objType)
this.objType="EbaySiteCatalystConfig";this.base=EbayConfig;this.base(pName);this.turnOnTracking=0;this.countrySampleRate=100;this.isIframe=false;}
function EbaySiteCatalyst(pParent,pName,pConfig)
{if(!this.objType)
this.objType="EbaySiteCatalyst";this.base=EbayBaseControl;this.base(pParent,pName);this.oConfig=pConfig;var env=this.oGlobals.oEnvironment;this.oFiles=new EbaySiteCatalystFiles(this,"files");this.aAccounts=new Array;this.sCookieDom=env.sCookieDomain;this.sCookieName="ebay";this.sCountry=this.sQA=this.sSample=this.sPage=this.sHost=this.sPageName=this.sChannel="";this.sUser="Nonreg";this.bLoadBaseCode=false;this.bDebugMode=env.sThisPageQuery.has("ebscdebug=on");this.dExpires=new Date();this.writeCookie=function(pName,pVal)
{writeCookieletEx(this.sCookieName,pName,pVal,this.sCookieDom,"/");}
this.readCookie=function(pName)
{return readCookieletEx(this.sCookieName,pName);}
this.addAccount=function(pAccount)
{this.aAccounts[this.aAccounts.length]=pAccount;}
this.setCountry=function()
{with(this)
{var env=oGlobals.oEnvironment;var c=env.sCountry.toUpperCase(),tp=sPage;c=c.substring(0,2);if(tp.has('.com/nz/'))c="NZ";else if(tp.has('ebaysweden'))c="SE";else if(tp.has('.com.sg/'))c="SG";else if(tp.has('.com.hk/'))c="HK";if(env.sSiteID=="0"&&(tp.has("/ebaymotors/")||(env.sThisPageHost.has(".motors.")))){env.sSiteID="100";}
sCountry=c+";"+env.sSiteID+";";}}
this.getOrDropLuckyCookie=function()
{with(this)
{var l9="lucky9",v=oDocument.getCookie(l9);if(v.is("")||v.length!=7)
v=new String(Math.floor(Math.random()*10000000));writeCookieEx(l9,v,sCookieDom,"/",dExpires);sSample=v;return v;}}
this.checkRegCookie=function()
{with(this)
{if((readCookieletEx("reg","flagReg")=="1")||(readCookieEx("ebaysignin")=="in")||(readCookieEx("reg")=="1"))
{sUser="Reg";writeCookieletEx("reg","flagReg","1",sCookieDom,"/",dExpires);}}}
this.determineAccounts=function()
{with(this)
{var l9=getOrDropLuckyCookie(),len=(l9.length>0);var doc=oDocument;sChannel=oGlobals.oEnvironment.sCountryDesc;if(len)
{var cnt=oGlobals.oEnvironment.sCountry;if((typeof(scbps)!="undefined"&&scbps==1)||l9%oConfig.countrySampleRate==6){addAccount("ebay"+sChannel+sQA);}}}}
this.loadFiles=function()
{with(this)
{var env=oGlobals.oEnvironment;var fs=oFiles.aFiles,len=fs.length;for(var i=0;i<len;i++)
oDocument.write(oUtils.scriptTag(fs[i]+env.sJSPackageSuffix));}}
this.init=function()
{with(this)
{if(!oConfig.turnOnTracking)
return;var yr=dExpires.getYear();if(yr<1900)
yr=yr+1900;dExpires.setYear(yr+5);var doc=oDocument;doc.write('<img name="s_i_ebay" width=1 height=1 border=0>');var env=oGlobals.oEnvironment,tp=env.sThisPage;sPage=tp.toLowerCase();sHost=env.sThisPageHost.toLowerCase();sQA=env.sThisPagePath.has(env.sQADomain)?"qa":"";checkRegCookie();determineAccounts();setCountry();bLoadBaseCode=(aAccounts.length||bDebugMode);}}
var tracking=ebay.oDocument.bEnableSiteCatalystTracking;this.trackFromPage=function(obj){with(this)
if(window.s_ebay&&obj&&obj.pageName){obj.pageName=obj.prop22=obj.prop26=sCountry+obj.pageName;execCustomFunctions(obj);var c=s_ebay.t(obj);if(c)
document.write(c);}}
if(typeof(tracking)=="undefined"||tracking)
this.init();}
new EbaySiteCatalyst(ebay.oDocument,"siteCatalyst",ebay.oDocument.getConfig("siteCatalyst"));

//7@@m3

function ebSiteCatalystIsTrackSearchAd()
{if(window==window.parent)
return true;}

//8@@m17

ebay.oDocument._getControl("siteCatalyst").attachFunctionality=function()
{this.sPageNameCountrySite="";this.ssADMEC=this.sSBR=this.sFND2=this.sDomValue=this.aBibo=this.aSegF="";this.aCustomFunctions=new Array;this.sCookieNames=new Array;this.debug=new Function("");this.registerFunction=function(pName)
{this.aCustomFunctions[this.aCustomFunctions.length]=pName;}
this.addCookieName=function(pName,pInSSCookie)
{this.sCookieNames[pName]=pInSSCookie;}
this.getAndSetPageName=function()
{with(this)
{var pn=oDocument.doc.title,un="undefined";if((typeof(pageName)!=un)&&(pageName!="document.title"))
pn=pageName;sPageNameCountrySite=sCountry+pn;with(oFiles)
{var p=parent,pnl=pn.toLowerCase(),pg=p.sPage.toLowerCase(),ed=sEventsDir;var pnd=sPageNamesDir,prd=sPropertyReportsDir,cd=sCookiesDir;var pkdir=sPackageDir;add(pkdir+"common");if((typeof(keyword)!=un)&&keyword)
add(cd+"keyword");p.addCookieName("ssSBR",true);if(typeof(SBR)!=un)
add(cd+"sbrWrite");p.addCookieName("ssFND2",true);if(typeof(FND2)!=un)
add(cd+"fnd2Write");p.addCookieName("ADME",true);if(pg.has("adme:"))
add(cd+"admeWrite");var writeLL=false;if(pg.has("sspagename="))
{if(pg.has("mops"))
add(pkdir+"mops");add(cd+"ssPagename");writeLL=true;}
if(!writeLL&&(pg.has("cid")||pg.has("pid")))
add(cd+"ssPagename");p.addCookieName("lastList",true);if(pnl.hasAny('viewsUsersPage','aboutmystore','storefrontlistings','sPagestorefrontlistings','storeinternalsearchresults','storebinitemsearchresults')||writeLL)
add(cd+"lastListWrite");if(pnl.has('viewitem'))
add(pkdir+"viewitem");if(pnl.hasAny('search','listings'))
{p.addSBRPropReportFiles();add(pkdir+"search_listings");}
if(pnl.hasAny('productpage','storesearch','pagesoi'))
p.addSBRPropReportFiles();if(pnl.hasAny('bincongrats','acceptbid'))
{var f=pnl.has('bincongrats')?"n":"d";add(pkdir+"bid_bin/bi"+f);p.ssADMEC="B";p.addFND2PropReportFiles();}
if(pnl.hasAny('pagereviewbin','pagebinverify'))
{add(pkdir+"bid_bin/attempt_bin");}
else if(new RegExp("^page.*(makebid|reviewbid)").test(pnl))
{add(pkdir+"bid_bin/attempt_bid");}
if(pnl.has('watchconfirm')||oDocument.getConfig("ResultSet"))
{add(prd+"CommonSBRFND2");add(pkdir+"watch_confirm");p.addFND2PropReportFiles();}
if(pnl.hasAny('pageaddnewitem','pagesyi_confirm','sellhub_confirm','pagesyi_lowerreservepriceconfirm'))
{p.ssADMEC="L";add(pkdir+"listing_confirm");}
if(pnl.hasAny('registersuccess','registercongrats','registeraolcongrats'))
{p.ssADMEC="R";add(ed+"registerSuccess");}
if(!p.ssADMEC.is(""))
add(cd+"admeRead");if(pnl.hasAny('registerenterinfo','busregenterinfo','businessregenterinfo'))
add(ed+"registerEnter");if(pnl.has('pageregisterconfirmemail'))
add(ed+"registerConfirm");pn=p.setOtherPagenames(pnl,pn);if((typeof(pfType)!=un)&&pfType)
add(prd+"productFinder");if((typeof(relatedStores)!=un)&&(relatedStores==1))
add(prd+"relatedStores");if(pnl.hasAny('checkoutreview','checkout_challenge')&&sCountry.isAny("us","uk"))
add(ed+"checkout");}
sPageName=sCountry+pn;}}
this.addSBRPropReportFiles=function()
{with(this.oFiles)
add(sPropertyReportsDir+"sbr");}
this.addFND2PropReportFiles=function()
{with(this.oFiles)
add(sPropertyReportsDir+"fnd2");}
this.setOtherPagenames=function(pPnl,pPn)
{var tp=this.sPage,rv=pPn;if(pPnl.is("sPagesignin")&&(this.oDocument.getCookie("ebaysignin")=="in"))
rv="PageSignOut";if(tp.has('liveauctions.'))rv="LiveAuctions:"+rv;if(tp.hasAny("searchcat","&pilot"))rv+=":CIS";if(tp.has("&allcats"))rv+=":AllCats";if(tp.has("&mocat"))rv+=":MoreCats";if(tp.has("&top10"))rv+=":Top10";return rv;}
this.getQueryParam=function(param,upper){var tp=this.sPage,ind=tp.indexOf(param),rv='';if(ind!=-1){var str=tp.substring(ind+param.length+1),end=str.indexOf('&');if(end==-1)
end=str.length;rv=str.substring(0,end);if(upper)
rv=rv.toUpperCase();}
return rv;}}
ebay.oDocument._getControl("siteCatalyst")._exec("attachFunctionality");

//9@@m9

ebay.oDocument._getControl("siteCatalyst").load=function()
{with(this)
{var un='undefined';var stores=((typeof(eBayTREiasId)!=un)&&(typeof(eBayTRPageName)!=un)&&(typeof(eBayTRInactive)!=un)&&!eBayTRInactive);if(bLoadBaseCode||stores)
{if(typeof(getAndSetPageName)=="function")
getAndSetPageName();with(oFiles)
{var pd=sPackageDir;if(bDebugMode&&oGlobals.oClient.bIE)
add(pd+"debug");if(this.aAccounts&&this.aAccounts.length>0){s_account=this.aAccounts[0];for(i=1;i<this.aAccounts.length;i++){s_account+=", "+this.aAccounts[i];}
add(pd+"omniture/scode");}
if(stores){add(pd+"omniture/base");add(pd+"omniture/stores");}
if(parent.bLoadBaseCode)add(pd+"base");}
loadFiles();}}}
ebay.oDocument._getControl("siteCatalyst")._exec("load");

//10@@m5

function ebDowngradeDomainTo()
{var dd=document.domain,i=dd.indexOf(".ebay."),qs;if(i!=-1)
{dd=dd.substr(i+1);qs=decodeURI(document.location.search);if((i=qs.indexOf("downgradeDomainTo="))>-1)
dd=qs.substring(i+18,qs.indexOf(dd)+dd.length);if(document.domain!=dd||!document.all)
document.domain=new String(dd);}}
ebDowngradeDomainTo();
// b=10272699 -->