//dbugScripts - will include non-compressed versions of this code if "jsdebug=true" is in the url of this page,
//otherwise it will execute this code.
//example: dbugScripts("/the/location/of/my/scripts/",["script1.js","script2.js","etc"])
//returns true if scripts are included, otherwise false.
if(!dbugScripts("http://c18-x-publish1.cnet.com:8100/html/rb/js/download/cat/",["download.global.framework.js"])){

/* begin packed code */ 
var MultipleOpenAccordion=Fx.Elements.extend({options:{openAll:true,allowMultipleOpen:true,firstElementsOpen:[0],start:'open-first',fixedHeight:false,fixedWidth:false,alwaysHide:true,wait:false,onActive:Class.empty,onBackground:Class.empty,height:true,opacity:true,width:false},initialize:function(b,c,d){this.parent(c,d);this.setOptions(d);this.previousClick=null;this.elementsVisible=[];b.each(function(a,i){$(a).addEvent('click',function(){this.toggleSection(i)}.bind(this))},this);this.togglers=b;this.h={};this.w={};this.o={};this.now=[];this.elements.each(function(a,i){a=$(a);this.now[i]={};a.setStyle('overflow','hidden');if(!(this.options.openAll&&this.options.allowMultipleOpen))a.setStyle('height',0)},this);if(!this.options.openAll||!this.options.allowMultipleOpen){switch(this.options.start){case'first-open':this.showSection(this.options.firstElementsOpen[0]);break;case'open-first':this.toggleSection(this.options.firstElementsOpen[0]);break}}if(this.options.openAll&&this.options.allowMultipleOpen)this.showAll();else if(this.options.allowMultipleOpen)this.openSections(this.options.firstElementsOpen)},hideThis:function(i){this.elementsVisible[i]=false;if(this.options.height)this.h={'height':[this.elements[i].offsetHeight,0]};if(this.options.width)this.w={'width':[this.elements[i].offsetWidth,0]};if(this.options.opacity)this.o={'opacity':[this.now[i]['opacity']||1,0]};this.fireEvent("onBackground",[this.togglers[i],this.elements[i]])},showThis:function(i){this.elementsVisible[i]=true;if(this.options.height)this.h={'height':[this.elements[i].offsetHeight,this.options.fixedHeight||this.elements[i].scrollHeight]};if(this.options.width)this.w={'width':[this.elements[i].offsetWidth,this.options.fixedWidth||this.elements[i].scrollWidth]};if(this.options.opacity)this.o={'opacity':[this.now[i]['opacity']||0,1]};this.fireEvent("onActive",[this.togglers[i],this.elements[i]])},toggleSection:function(c){if(c!=this.previousClick||this.options.alwaysHide||this.options.allowMultipleOpen){this.previousClick=c;var d={};var e=false;this.elements.each(function(a,i){var b=false;this.now[i]=this.now[i]||{};if(i==c){if(this.elementsVisible[i]&&(this.options.allowMultipleOpen||this.options.alwaysHide)){if(!(this.options.wait&&this.timer)){b=true;this.hideThis(i)}else{this.previousClick=null;e=true}}else if(!this.elementsVisible[i]){if(!(this.options.wait&&this.timer)){b=true;this.showThis(i)}else{this.previousClick=null;e=true}}}else if(this.elementsVisible[i]&&!this.options.allowMultipleOpen){if(!(this.options.wait&&this.timer)){b=true;this.hideThis(i)}else{this.previousClick=null;e=true}}if(b)d[i]=$merge(this.h,$merge(this.o,this.w))},this);if(e)return false;return this.custom(d)}return false},showSection:function(i,a){if($pick(a,false)){if(!this.elementsVisible[i])this.toggleSection(i)}else{this.setSectionStyle(i,$(this.elements[i]).scrollWidth,$(this.elements[i]).scrollHeight,1);this.elementsVisible[i]=true;this.fireEvent("onActive",[this.togglers[i],this.elements[i]])}},hideSection:function(i,a){if($pick(a,false)){if(this.elementsVisible[i])this.toggleSection(i)}else{this.setSectionStyle(i,0,0,0);this.elementsVisible[i]=false;this.fireEvent("onBackground",[this.togglers[i],this.elements[i]])}},setSectionStyle:function(i,w,h,o){if(this.options.opacity)$(this.elements[i]).setOpacity(o);if(this.options.height)$(this.elements[i]).setStyle('height',h+'px');if(this.options.width)$(this.elements[i]).setStyle('width',w+'px')},showAll:function(){if(this.options.allowMultipleOpen){this.elements.each(function(a,b){this.showSection(b,false)},this)}},hideAll:function(){if(this.options.allowMultipleOpen){this.elements.each(function(a,b){this.hideSection(b,false)},this)}},openSections:function(c){if(this.options.allowMultipleOpen){this.elements.each(function(a,b){if(c.test(b))this.showSection(b,false);else this.hideSection(b,false)},this)}}});MultipleOpenAccordion.implement(new Options);MultipleOpenAccordion.implement(new Events);var CNETNavAccordion=new Class({initialize:function(a){try{this.setOptions({openAll:false,allowMultipleOpen:true,defaultOpenIndexes:[0],defaultOpenClassName:'forceOpen',allowCookie:false,cookieName:false,cookieDuration:999,stretchToggleSelector:'div.xNavGrp div.btn',stretcherSelector:'div.xNavGrp ul'},a);var b=(this.options.openAll)?'first-open':'open-first';if(this.options.allowCookie&&this.options.cookieName&&this.getPref())this.options.defaultOpenIndexes=this.getPref();var c=$$(this.options.stretchToggleSelector);var d=$$(this.options.stretcherSelector);if(c&&d){var f=c.filter(function(t,i){return t.hasClass(this.options.defaultOpenClassName)},this);f.extend(this.options.defaultOpenIndexes);this.Accordion=new MultipleOpenAccordion(c,d,{openAll:this.options.openAll,allowMultipleOpen:this.options.allowMultipleOpen,firstElementsOpen:f,start:b})}}catch(e){dbug.log('nav accordion error: %s',e)}},savePref:function(a){Cookie.set(Json.toString(this.options.cookieName),a,{duration:cookieDuration})},getPref:function(){return Json.evaluate(Cookie.get(this.options.cookieName))}});CNETNavAccordion.implement(new Options);CNETNavAccordion.implement(new Events);function setUpNavHtml(){$$("div.xNavGrp","div.xNav").each(function(c,d){if(!c.hasClass('CNETNavArranged')){c.getElements("ul").each(function(a){var b=a.getElements("li");b[b.length-1].addClass("last")});c.getElements("H3").each(function(a){a.adopt(new Element("div").addClass("btn"));a.addEvent('onfocus',function(){this.blur()})});c.getElement("ul").id="xNav-"+d;var e=c.getElements("LI");e[e.length-1].addClass("last");e=null}c.addClass('CNETNavArranged')})};var defaultNavAccordion=null;window.addEvent('domready',function(){setUpNavHtml();if(defaultNavAccordion==null)defaultNavAccordion=new CNETNavAccordion();tabMouseOvers('hover','','div.xNavGrp div.btn')});var simpleTemplateParser={STP:{},parseTemplate:function(a,b,c,d){var e=this.STP;e.template=a;e.object=b;e.regexOptions=$pick(c,'ig');e.wrappers=$pick(d,{before:'%',after:'%'});return e.result=this.runParser(e.object,e.template,e.regexOptions)},runParser:function(a,b,c){for(value in a){switch($type(a[value])){case'string':b=this.tmplSubst(value,a[value],b,c);break;case'number':b=this.tmplSubst(value,a[value],b,c);break;case'object':b=this.runParser(a[value]);break;case'array':b=this.tmplSubst(value,a[value].toString(),b,c);break}}return b},tmplSubst:function(a,b,c,d){return c.replace(new RegExp(this.STP.wrappers.before+a+this.STP.wrappers.after,'gi'),b)}};var Modalizer=new Class({defaultModalStyle:{display:'block',position:'fixed',top:'0px',left:'0px','z-index':5000,'background-color':'#333',opacity:0.8},setModalOptions:function(a){this.modalOptions=$merge({width:(window.getScrollWidth()+300)+'px',height:(window.getScrollHeight()+300)+'px',elementsToHide:'select',onModalHide:Class.empty,onModalShow:Class.empty,hideOnClick:true,modalStyle:{},updateOnResize:true},this.modalOptions,a||{})},resize:function(){if($('modalOverlay')){$('modalOverlay').setStyles({width:(window.getScrollWidth()+300)+'px',height:(window.getScrollHeight()+300)+'px'})}},setModalStyle:function(a){this.modalOptions.modalStyle=a;this.modalStyle=$merge(this.defaultModalStyle,{width:this.modalOptions.width,height:this.modalOptions.height},a);if($('modalOverlay'))$('modalOverlay').setStyles(this.modalStyle);return(this.modalStyle)},modalShow:function(a){this.setModalOptions(a||{});var b=null;if($('modalOverlay'))b=$('modalOverlay');if(!b)b=new Element('div').setProperty('id','modalOverlay').injectInside(document.body);b.setStyles(this.setModalStyle(this.modalOptions.modalStyle));if(window.ie6)b.setStyle('position','absolute');$('modalOverlay').removeEvents('click').addEvent('click',function(){this.modalHide(this.modalOptions.hideOnClick)}.bind(this));this.bound=this.bound||{};if(!this.bound.resize&&this.modalOptions.updateOnResize){this.bound.resize=this.resize.bind(this);window.addEvent('resize',this.bound.resize)}this.modalOptions.onModalShow();this.togglePopThroughElements(0);b.setStyle('display','block');return this},modalHide:function(a){if(a===false)return false;this.togglePopThroughElements(1);this.modalOptions.onModalHide();if($('modalOverlay'))$('modalOverlay').setStyle('display','none');if(this.modalOptions.updateOnResize){this.bound=this.bound||{};if(!this.bound.resize)this.bound.resize=this.resize.bind(this);window.removeEvent('resize',this.bound.resize)}return this},togglePopThroughElements:function(b){if((window.ie6||(window.gecko&&navigator.userAgent.test('mac','i')))){$$(this.modalOptions.elementsToHide).each(function(a){a.setStyle('opacity',b)})}}});var modalizer=Modalizer;function stickyWinHTML(c,d,f){f=$merge({width:'300px',css:"div.DefaultStickyWin div.body{font-family:verdana; font-size:11px; line-height: 13px;}"+"div.DefaultStickyWin div.top_ul{background:url(%baseHref%full.png) top left no-repeat; height:30px; width:15px; float:left}"+"div.DefaultStickyWin div.top_ur{position:relative; left:0px !important; left:-4px; background:url(%baseHref%full.png) top right !important; height:30px; margin:0px 0px 0px 15px !important; margin-right:-4px; padding:0px}"+"div.DefaultStickyWin h1.caption{margin:0px 5px 0px 0px; overflow: hidden; padding:0; font-weight:bold; color:#555; font-size:14px; position:relative; top:8px; left:5px; float: left; height: 22px;}"+"div.DefaultStickyWin div.middle, div.DefaultStickyWin div.closeBody {background:url(%baseHref%body.png) top left repeat-y; margin:0px 20px 0px 0px !important;	margin-bottom: -3px; position: relative;	top: 0px !important; top: -3px;}"+"div.DefaultStickyWin div.body{background:url(%baseHref%body.png) top right repeat-y; padding:8px 30px 8px 0px; margin-left:5px; position:relative; right:-20px}"+"div.DefaultStickyWin div.bottom{clear:both}"+"div.DefaultStickyWin div.bottom_ll{background:url(%baseHref%full.png) bottom left no-repeat; width:15px; height:15px; float:left}"+"div.DefaultStickyWin div.bottom_lr{background:url(%baseHref%full.png) bottom right; position:relative; left:0px !important; left:-4px; margin:0px 0px 0px 15px !important; margin-right:-4px; height:15px}"+"div.DefaultStickyWin div.closeButtons{text-align: center; background:url(%baseHref%body.png) top right repeat-y; padding: 0px 30px 8px 0px; margin-left:5px; position:relative; right:-20px}"+"div.DefaultStickyWin a.button:hover{background:url(%baseHref%big_button_over.gif) repeat-x}"+"div.DefaultStickyWin a.button {background:url(%baseHref%big_button.gif) repeat-x; margin: 2px 8px 2px 8px; padding: 2px 12px; cursor:pointer; border: 1px solid #999 !important; text-decoration:none; color: #000 !important;}"+"div.DefaultStickyWin div.closeButton{width:13px; height:13px; background:url(%baseHref%closebtn.gif) no-repeat; position: absolute; right: 0px; margin:10px 15px 0px 0px !important; cursor:pointer}"+"div.DefaultStickyWin div.dragHandle {	width: 11px;	height: 25px;	position: relative;	top: 5px;	left: -3px;	cursor: move;	background: url(%baseHref%drag_corner.gif); float: left;}",cornerHandle:false,cssClass:'',baseHref:'http://www.cnet.com/html/rb/assets/global/stickyWinHTML/',buttons:[]},f);if(f.confirmTxt)f.buttons.push({text:f.confirmTxt,onClick:f.onConfirm||Class.empty});if(f.closeTxt)f.buttons.push({text:f.closeTxt,onClick:f.onClose||Class.empty});window.addEvent('domready',function(){try{if(!$('defaultStickyWinStyle')){var a=simpleTemplateParser.parseTemplate(f.css,f);if(window.ie)a=a.replace(new RegExp('png','gi'),'gif');var b=new Element('style').setProperty('id','defaultStickyWinStyle').injectInside($$('head')[0]);if(!b.setText.attempt(a,b))b.appendText(a)}}catch(e){dbug.log('error: %s',e)}}.bind(this));c=$pick(c,'%caption%');d=$pick(d,'%body%');var g=new Element('div').setStyle('width',f.width).addClass('DefaultStickyWin');if(f.cssClass)g.addClass(f.cssClass);var h=new Element('h1').addClass('caption').setStyle('width',(f.width.toInt()-(f.cornerHandle?70:60))+'px');if($(c))h.adopt(c);else h.setHTML(c);var i=new Element('div').addClass('body');if($(d))i.adopt(d);else i.setHTML(d);var j=new Element('div').addClass('top_ur').adopt(new Element('div').addClass('closeButton').addClass('closeSticky')).adopt(h);if(f.cornerHandle){new Element('div').addClass('dragHandle').injectTop(j)}else{h.addClass('dragHandle')}g.adopt(new Element('div').addClass('top').adopt(new Element('div').addClass('top_ul')).adopt(j));g.adopt(new Element('div').addClass('middle').adopt(i));if(f.buttons.length>0){var k=new Element('div').addClass('closeButtons');f.buttons.each(function(a){if(a.properties&&a.properties.className){a.properties['class']=a.properties.className;delete a.properties.className}var b=$merge({'class':'closeSticky'},a.properties);new Element('a').addEvent('click',a.onClick||Class.empty).appendText(a.text).injectInside(k).setProperties(b).addClass('button')});g.adopt(new Element('div').addClass('closeBody').adopt(k))}g.adopt(new Element('div').addClass('bottom').adopt(new Element('div').addClass('bottom_ll')).adopt(new Element('div').addClass('bottom_lr')));return g};var StickyWin=new Class({options:{onDisplay:Class.empty,onClose:Class.empty,closeClassName:'closeSticky',pinClassName:'pinSticky',content:'',zIndex:10000,className:'',edge:false,position:'center',offset:{x:0,y:0},relativeTo:document.body,width:false,height:false,timeout:-1,allowMultipleByClass:false,allowMultiple:true,showNow:true,useIframeShim:true,iframeShimSelector:''},css:'.SWclearfix:after {content: "."; display: block; height: 0; clear: both; visibility: hidden;}'+'.SWclearfix {display: inline-table;}'+'* html .SWclearfix {height: 1%;}'+'.SWclearfix {display: block;}',initialize:function(b){this.setOptions(b);this.id=this.options.id||'StickyWin_'+new Date().getTime();this.makeWindow();if(this.options.content)this.setContent(this.options.content);if(this.options.showNow)this.show();window.addEvent('domready',function(){try{if(!$('StickyWinClearfix')){var a=new Element('style').setProperty('id','StickyWinClearfix').injectInside($$('head')[0]);if(!a.setText.attempt(this.css,a))a.appendText(this.css)}}catch(e){dbug.log('error: %s',e)}}.bind(this))},makeWindow:function(){this.destroyOthers();if(!$(this.id)){this.win=new Element('div').setProperty('id',this.id).addClass(this.options.className).addClass('StickyWinInstance').addClass('SWclearfix').setStyles({'display':'none','position':'absolute','zIndex':this.options.zIndex}).injectInside(document.body)}else this.win=$(this.id);if(this.options.width&&$type(this.options.width.toInt())=="number")this.win.setStyle('width',this.options.width.toInt()+'px');if(this.options.height&&$type(this.options.height.toInt())=="number")this.win.setStyle('height',this.options.height.toInt()+'px');return this},show:function(){this.fireEvent('onDisplay');if(!this.positioned)this.position();this.showWin();if(this.options.useIframeShim)this.showIframeShim();this.visible=true;return this},showWin:function(){this.win.setStyle('display','block')},hide:function(){this.fireEvent('onClose');this.hideWin();if(this.options.useIframeShim)this.hideIframeShim();this.visible=false;return this},hideWin:function(){this.win.setStyle('display','none')},destroyOthers:function(){if(!this.options.allowMultipleByClass||!this.options.allowMultiple){$$('div.StickyWinInstance').each(function(a){if(!this.options.allowMultiple||(!this.options.allowMultipleByClass&&a.hasClass(this.options.className)))a.remove()},this)}},setContent:function(b){if(this.win.getChildren().length>0)this.win.empty();if($type(b)=="string")this.win.setHTML(b);else if($(b))this.win.adopt(b);this.win.getElements('.'+this.options.closeClassName).each(function(a){a.addEvent('click',this.hide.bind(this))},this);this.win.getElements('.'+this.options.pinClassName).each(function(a){a.addEvent('click',this.togglepin.bind(this))},this);return this},position:function(){this.positioned=true;this.win.setPosition({relativeTo:this.options.relativeTo,position:this.options.position,offset:this.options.offset,edge:this.options.edge});if(this.shim)this.shim.position();return this},pin:function(a){if(!this.win.pin){dbug.log('you must include element.pin.js!');return false}this.pinned=$pick(a,true);return this.win.pin(a)},unpin:function(){this.pin(false)},togglepin:function(){this.pin(!this.pinned)},makeIframeShim:function(){if(!this.shim){this.shim=new IframeShim({element:(this.options.iframeShimSelector)?this.win.getElement(this.options.iframeShimSelector):$('StickyWinOverlay')||this.win,display:false,name:'StickyWinShim'})}},showIframeShim:function(){if(this.options.useIframeShim){this.makeIframeShim();this.shim.show()}},hideIframeShim:function(){if(this.options.useIframeShim)this.shim.hide()},destroy:function(){this.win.remove();if(this.options.useIframeShim)this.shim.remove();if($('StickyWinOverlay'))$('StickyWinOverlay').remove()}});StickyWin.implement(new Options);StickyWin.implement(new Events);var stickyWin=StickyWin;var modalWinBase={initialize:function(a){a=a||{};this.setModalOptions($merge(a.modalOptions||{},{onModalHide:function(){this.hide(false)}.bind(this)}));this.parent(a)},show:function(a){if($pick(a,true))this.modalShow();this.parent()},hide:function(a){if($pick(a,true))this.modalHide();this.parent()}};var StickyWinModal=StickyWin.extend(modalWinBase);StickyWinModal.implement(new Modalizer);var StickyWinFxModal=(typeof StickyWinFx!="undefined")?StickyWinFx.extend(modalWinBase):Class.empty;try{StickyWinFxModal.implement(new Modalizer())}catch(e){}var simpleErrorPopup=function(a,b,c){c=c||"http://www.cnet.com/html/rb/assets/global/simple.error.popup";b='<p class="errorMsg SWclearfix">'+'<img src="'+c+'/simple.error.popup/icon_problems_sm.gif"'+' class="bang clearfix" style="float: left; width: 30px; height: 30px; margin: 3px 5px 5px 0px;">'+b+'</p>';var d=stickyWinHTML(a,b,{width:'250px'});return new StickyWinModal({modalOptions:{modalStyle:{zIndex:11000}},zIndex:110001,content:d,position:'center'})};var rbdl={};var postDL=PostDL={};function goToSeeBenefitsUrl(){window.location='http://'+location.host+'/1320-20_4-133.html?tag=dhd_why&path='+urlEncode(location.href)};function goToForgotPasswordUrl(){window.location='http://'+location.host+'/1328-20_4-133.html?tag=dhd_fg&path='+urlEncode(location.href)};function urlEncode(a){return a.urlEncode()};function popUp(a){window.popup(a,{name:new Date().getTime(),width:838,heigh:628})};function openPopup(a,b){window.popup(a,{name:b,width:480,height:320});window.self.name='cnetParent'};function checkCookies(b,c){try{return $A(b.split($pick(c,","))).every(function(a){return!Cookie.get(a)})}catch(e){return false}};function checkCookie(a){return(!!Cookie.get(a))};function writeCookies(c,d,f,g){try{d=d.split(delimeter);$A(c.split($pick(delimeter,","))).each(function(a,b){Cookie.set(a,d[b],{duration:$pick(g,30)})});return true}catch(e){return false}};function deleteCookies(b,c){try{$A(b.split($pick(c,","))).each(function(a){Cookie.remove(a)});return true}catch(e){return false}};var delCookie=Cookie.remove;function delGDLCookie(a){Cookie.remove(a,"download.com");return true};function removePrefCookies(){['gdlPrefs','mdl_streaming_bandwidth','mdl_streaming_explicit'].each(function(a){Cookie.remove(a)})};function ToPublisher(a,b){this.win=window.popup(a,{name:b,height:Math.ceil(screen.height*.8),width:Math.ceil(screen.width*.8),x:Math.ceil(screen.height*.1),y:Math.ceil(screen.width*.1)});this.win.focus();return this.win.window};$extend(rbdl,{downloadNow:function(a,b,c){if(window.ie&&!window.opera&&(c==0||c=='0')){var d=new window.popup(a,{name:'_blank',width:0,height:0,x:0,y:0});window.location.href=b+urlEncode(((b.test(/destUrl\=.*?\%3F/))?'&':'?')+'idl=n')}else window.location.href=b;return false},dlComplete:function(a){if(document.readyState=='loading')rbdl.dlComplete.pass(a).delay(100);else window.location.href=a},downloadTitle:function(a,b,c){if(c==0||c=='0'){window.open(a,'_blank','width=1,height=1,top=0,left=0,location=no,menubar=no,resizable=no,scrollbars=no,titlebar=no,toolbar=no');window.location.href=b+encodeURIComponent(((b.test(/destUrl\=.*?\%3F/))?'&':'?')+'idl=n')}else{window.location.href=b}return false}});var downloadNow=rbdl.downloadNow;rbdl.dlNow=rbdl.downloadNow;dlNow=rbdl.downloadNow;var dlComplete=rbdl.dlComplete;$extend(Cookie,{myDownloadsCookie:function(){var a={count:0,pidString:'',rndToken:Math.floor(Math.random()*101),mdViewed:0};var b=Cookie.get("dwnlds");if(null!=b&&''!=b){var c=b.split('|');$extend(a,{count:(c.length>0)?c[0]:a.count,pidString:(c.length>1)?c[1]:a.pidString,rndToken:(c.length>2)?c[2]:a.rndToken,mdViewed:(c.length>3)?c[3]:a.mdViewed})}return a},setMyDownloadsCookie:function(a){var b=a.count+"|"+a.pidString+"|"+a.rndToken+"|"+a.mdViewed;Cookie.set('dwnlds',b,{duration:3650})}});var watchList=WatchList={setAutoCookie:function(){$$('.autoCookie').each(function(b){if(b.type=="checkbox"){if(Cookie.get(b.name)=="true")b.checked=true;else if(Cookie.get(b.name)=="false")b.checked=false;$(b).addEvent('click',function(){Cookie.set(this.name,this.checked,{duration:9999});if($($(b).id+'Msg'))watchList.showMsg($($(b).id+'Msg'));return true})}if(b.type=="select-one"){if(typeof Cookie.get(b.name)!="undefined"&&Cookie.get(b.name)!="null"){var c=b.options;$A(c).each(function(a){if(c[numOptions].value==Cookie.get(b.name))c[numOptions].selected=true})}$(b).addEvent('click',function(){var a=b.options[b.selectedIndex].value;Cookie.set(this.name,a,{duration:9999});if($($(b).id+'Msg'))watchList.showMsg($($(b).id+'Msg'))})}})},getHTML:function(a,b,c,d){new Ajax(b+"?"+c,{update:a,method:'get',parameters:c,evalScripts:true,fireNow:false,onFailure:d.bind(this)}).request()},openWatchListFAQ:function(){var a=escape(parent.location.href);var b='http://www.download.com/1200-20_4-5155971.html?path='+a;new window.popup(b,{name:'wl_faq',width:500,height:481,scrollbars:true});window.self.name='cnetParent'},showMsg:function(a,b){b=$pick(b,true);var c=Class.empty;var d=Class.empty;var e=null;if(b){e=$(a).effect('opacity',{duration:500});c=function(){e.custom(0,1)};d=function(){e.custom(1,0)}}else{c=function(){$(a).show()};d=function(){$(a).hide()}}c.delay(500);d.delay(2000)},parseQSParms:function(){var a=window.location.search;if(a=="")return null;if(a.indexOf("?")==0)a=a.substring(1,a.length);return a.parseQuery()},defaultErrorHandler:Class.empty,jsNodeId:PageVars.nodeId,jsSiteId:PageVars.siteId,registerJSDefaults:function(a,b,c){this.registerJSPageDefaults(a,b,'','',c)},registerJSPageDefaults:function(a,b,c,d,e){this.jsNodeId=a;this.jsSiteId=b;this.jsPageType=c;this.jsOID=d;this.defaultErrorHandler=e},filterWatchList:function(a,b,c,d,e){$(a).effect('opacity').custom(1,0);var f='/3350-'+this.jsNodeId+'_'+this.jsSiteId+'-0.html';var g='viewName='+c+'&component'+'&daysSinceEvent='+b+'&filtered=1';this.getHTML.pass([a,f,g,this.getErrorHandler(e)],this).delay(400);$(a).effect('opacity').custom.pass(0,1).delay(800)},showAddOrWatchItemLink:function(a,b,c,d,e,f){((window.getQueryStringValue('addWatchItem')!=null)?this.addWatchItem.bind(this):this.showWatchItemLink.bind(this))(a,b,c,d,e,f)},showWatchItemLink:function(a,b,c,d,e,f){this.showWaitingGif(a,e,"Loading...");var g='/3351-'+this.jsNodeId+'_'+this.jsSiteId+'-0.html';var h='referencedType='+b+'&referencedId='+c+'&viewName='+d+'&component';this.getHTML(a,g,h,this.getErrorHandler(f))},viewWatchItem:function(a,b,c,d,e){this.showWaitingGif(a,d,"Loading...");var f='/3352-'+this.jsNodeId+'_'+this.jsSiteId+'-0.html';var g='viewName='+c+'&listItemId='+b+'&component';this.getHTML(a,f,g,this.getErrorHandler(e));return true},syncWatchItemByItemId:function(a,b,c,d,e){this.showWaitingGif(a,d,"Loading...");var f='/3352-'+this.jsNodeId+'_'+this.jsSiteId+'-0.html';var g='syncListItem';var h='cmd='+g+'&assetType=listItem&listItemId='+b+'&viewName='+c+'&component';this.getHTML(a,f,h,this.getErrorHandler(e))},syncWatchItemByRefId:function(a,b,c,d,e,f){this.showWaitingGif(a,e,"Loading...");var g='/3353-'+this.jsNodeId+'_'+this.jsSiteId+'-0.html';var h='syncIfWatchItemExists';var i='cmd='+h+'&referencedType='+b+'&referencedId='+c+'&eventTypes=1&eventTypes=4';var j=Cookie.get("DLWatchlistAutoAdd-SW_PS-PostDlAlert");switch(c){case 10045910:case 10320142:case 10208565:case 10028984:case 10047473:case 10251792:case 10007677:case 10003164:case 10029188:case 10039884:case 10051892:case 10296306:case 10057840:case 10021962:case 10155605:case 10411076:case 10265538:case 10122137:case 10019223:case 10590188:if((location.href!=null&&location.href.indexOf('also-dwnld')<0)&&j!='false')i+='&eventTypes=2'};i+='&viewName='+d+'&component';this.getHTML(a,g,i,this.getErrorHandler(f))},addWatchItem:function(a,b,c,d,e,f){this.showWaitingGif(a,e,"Adding...");var g='/3353-'+this.jsNodeId+'_'+this.jsSiteId+'-0.html';var h='addWatchItem';var i='cmd='+h+'&referencedType='+b+'&referencedId='+c+'&viewName='+d+'&component';this.getHTML(a,g,i,this.getErrorHandler(f))},addWatchItemPostDL:this.addWatchItem,removeWatchItem:function(a,b,c,d,f,g,h){try{this.showWaitingGif(a,g,"Removing...");var i='/3353-'+this.jsNodeId+'_'+this.jsSiteId+'-0.html';var j='removeListItem';var k='cmd='+j+'&listItemId='+b;if(c!=''&d!='')k+='&referencedType='+c+'&referencedId='+d;k+='&viewName='+f+'&component'}catch(e){dbug.log('error removing watch item: %o',e)}try{document.watchListTrckng.src='http://dw.com.com/redir?usraction=86&oId='+this.jsOID+'&siteId='+jsSiteId+'&destURL=http%3A%2F%2Fwww.download.com%2Fb.gif'}catch(e){}this.getHTML(a,i,k,this.getErrorHandler(h))},updateEmailPreference:function(a,b,c,d){var e='/3353-'+this.jsNodeId+'_'+this.jsSiteId+'-0.html';var f='editEmailDays';var g='cmd='+f+'&emailDays='+a;if(c)g+='&eventTypes='+c;g+='&component';this.getHTML(null,e,g,this.getErrorHandler(d))},getErrorHandler:function(a){if($type(a)=="function")return a;else return this.defaultErrorHandler},getAuthIdForQS:function(){var a=this.getAuthId();if(a!=null)return'&authId='+a;return""},getAuthId:function(){return window.getQueryStringValue('authId')},showWaitingGif:function(a,b,c){try{c=$pick(c,'');if($pick(b,false)){if(b=="small")$(a).setHTML(this.getSmallWaitingHTML(c));else if(b=="large")$(a).setHTML(this.getLargeWaitingHTML())}}catch(e){dbug.log('error showing waiting gif %o',e)}},getSmallWaitingHTML:function(a){return'<div class="searching"><img src="http://i.d.com.com/i/dl/watchlist/icon_small_waiting.gif" class="icon-waiting-sm" width="13" height="13" border="0">'+a+'</div>'},getLargeWaitingHTML:function(){return'<div class="loading"><img src="http://i.d.com.com/i/dl/watchlist/waiting.gif" class="icon-waiting-lg" width="150" height="54" border="0"></div>'}};window.onDomReady(watchList.setAutoCookie);var ajaxErrorPopup=watchList.ajaxErrorPopup=simpleErrorPopup;var mboxCopyright="Copyright 2003-2006 Offermatica Corporation. All Rights Reserved.";mboxCreate=function(a){if(!mboxEnv.isSupported()){return}var b=new Array();b[0]='mbox='+a;for(var c=1;c<arguments.length;c++){b[c]=arguments[c]}b[b.length]="mboxCount="+ ++mboxCount;var d=new mbox(a,b);d.put();return d};mbox=function mbox(e,b){this.f=mboxBuildURL(b);this.g=null;this.h=0;this.i=null;this.j=new mboxOfferContent();this.k=this.show;this.error=null;this.l=new Object();this.m=0;if(mboxs[e]){var n="multiple mboxes called: '"+e+'"';this.setError(n);mboxs[e].setError(n);e=e+"-dup-"+Math.floor(Math.random()*999999)}this.e=e;mboxs[e]=this};mbox.prototype.getName=function(){return this.e};mbox.prototype.parameters=function(){return mboxGetParamsFromQueryString(this.f)};mbox.prototype.setError=function(n){this.error=n;this.o=this.putNothing;this.k=this.hide};mbox.prototype.put=function(){if(mboxEnv.isEnabled()){this.setEventTime("put.start");document.write('<div id="'+this.getMarkerName()+'" style="visibility:hidden;display:none">'+'<'+'scr'+'ipt language="JavaScript">'+'mboxs["'+this.e+'"].startTimeout(15000);'+'<'+'\/scr'+'ipt>'+'<'+'scr'+'ipt src="'+this.f+'" language="JavaScript"><'+'\/scr'+'ipt>'+'</div>');this.setEventTime("put.end")}else{document.write('<div id="'+this.getMarkerName()+'"></div>')}};mbox.prototype.putNothing=function(){document.write('<div id="'+this.getMarkerName()+'"></div>')};mbox.prototype.activate=function(){if(this.h){return this.h}this.setEventTime('activate'+ ++this.m+'.start');if(this.k()){this.cancelTimeout();this.h=1}this.setEventTime('activate'+this.m+'.end');return this.h};mbox.prototype.isActivated=function(){return this.h};mbox.prototype.setActivateAction=function(p){this.k=p};mbox.prototype.setOffer=function(j){this.j=j};mbox.prototype.getOffer=function(){return this.j};mbox.prototype.show=function(){this.setEventTime('show.start');var q=this.j.show(this);this.setEventTime(q==1?"show.end.ok":"show.end");return q};mbox.prototype.showContent=function(r){if(r==null){return 0}var s=this.getDefaultDiv();if(s!=null&&s.parentNode.replaceChild){s.parentNode.replaceChild(r,s)}else{var t=document.getElementById(this.getMarkerName());if(t==null){return 0}if(s!=null){mboxMakeDivInvisible(s)}mboxMakeDivVisible(t)}mboxMakeDivVisible(r);return 1};mbox.prototype.hide=function(){this.setEventTime('hide.start');var t=document.getElementById(this.getMarkerName());if(t!=null){t.style.visibility="hidden";t.style.display="none"}var s=this.getDefaultDiv();if(s!=null){s.style.visibility="visible";s.style.display="block";this.setEventTime('hide.end.ok');return 1}this.setEventTime('hide.end.fail');return 0};mbox.prototype.finalize=function(){this.setEventTime('finalize.start');this.cancelTimeout();if(!this.activate()){this.hide();this.setEventTime('finalize.end.hide')}this.setEventTime('finalize.end.ok')};mbox.prototype.startTimeout=function(u){this.g=setTimeout('mboxCheckTimeoutById("'+this.e+'")',u)};mbox.prototype.cancelTimeout=function(){if(this.g!=null){clearTimeout(this.g)}};mbox.prototype.getImportDiv=function(){return document.getElementById(this.getImportName())};mbox.prototype.getDefaultDiv=function(){if(this.i!=null){return this.i}var v=document.getElementById(this.getMarkerName());while(v!=null){if((v.nodeType==1)&&(v.nodeName=="DIV")){if(v.className.indexOf('mboxMarker-')>0){return null}else if(v.className=='mboxDefault'){this.i=v;return v}}v=v.previousSibling}return null};mbox.prototype.setActivateAction=function(a){this.k=a};mbox.prototype.getMarkerName=function(){return'mboxMarker-'+this.e};mbox.prototype.getImportName=function(){return'mboxImported-'+this.e};mbox.prototype.setEventTime=function(w){this.l[w]=(new Date()).getTime()};mbox.prototype.getEventTimes=function(){return this.l};mbox.prototype.getURL=function(){return this.f};mboxMakeDivVisible=function(x){x.style.visibility="visible";x.style.display="block"};mboxMakeDivInvisible=function(x){x.style.visibility="hidden";x.style.display="none"};mboxGetParamsFromQueryString=function(a){var y=new Object();var z=a.indexOf("?");if(z==-1||z==(a.length-1)){return y}var A=a.substring(z+1);var B=A.split("&");for(var c=0;c<B.length;c++){var C=B[c].split("=");if(C.length<2||C[0]==""||C[1]==""){continue}else{y[C[0]]=C[1]}}return y};mboxOfferContent=function(){};mboxOfferContent.prototype.show=function(D){var r=D.getImportDiv();return D.showContent(r)};mboxOfferDefault=function(){};mboxOfferDefault.prototype.show=function(D){return D.hide()};mboxParametersClient=function(){return""};mboxBuildURL=function(b){var q=mboxServerURL;q+="?"+b[0];for(var c=1;c<b.length;c++){q+="&"+b[c]}if(document.location.protocol=="https:"){q=q.replace("http:","https:")}q+="&mboxHost="+document.location.hostname;if(q.indexOf('mboxSession')==-1){q+="&mboxSession="+mboxSessionId.getId()}q+="&mboxPC="+mboxPCId.getId();q+="&mboxPage="+mboxPageId;q+="&mboxXDomain=enabled";q+="&mboxURL="+escape(document.location);var E=escape(document.referrer);if(q.length+E.length<2000){q+="&mboxReferrer="+E}return q+"&mboxVersion="+mboxVersion};mboxIsSupported=function(){return true};mboxEnvironment=function(F){this.G=mboxIsSupported()&&document.getElementById&&(window.attachEvent||document.addEventListener||window.addEventListener);this.H=this.G;if(mboxGetPageParameter(F)!=null){this.H=false}if(!mboxCookies.isEnabled()){this.H=false}if(mboxCookies.getCookie('disable')=="true"){this.H=false}if(this.isAdmin()){this.enable()}};mboxEnvironment.prototype.isEnabled=function(){return this.H};mboxEnvironment.prototype.isSupported=function(){return this.G};mboxEnvironment.prototype.disable=function(u){if(typeof duration=='undefined'){u=60*60}if(!this.isAdmin()){this.H=false;mboxCookies.setCookie('disable',"true",u)}};mboxEnvironment.prototype.enable=function(){this.H=true;mboxCookies.deleteCookie('disable')};mboxEnvironment.prototype.isAdmin=function(){return document.location.href.indexOf('mboxEnv')!=-1};mboxEnvironment.prototype.limitTraffic=function(I,u){if(I==100){return}var J=false;if(mboxCookies.getCookie('traffic')=='true'){J=true}if(this.isAdmin()){J=true;mboxCookies.setCookie('level',I,u);mboxCookies.setCookie('traffic',J,u)}else if(parseInt(mboxCookies.getCookie('level'))!=I){J=(Math.random()*100)<=I;mboxCookies.setCookie('level',I,u);mboxCookies.setCookie('traffic',J,u)}if(J){this.enable()}else{this.disable()}};mboxCookieManager=function mboxCookieManager(K,L){this.K=K;if(L.indexOf(".")==-1){L=""}this.L=L==""?"":";domain="+L;this.loadCookies()};mboxCookieManager.prototype.isEnabled=function(){this.setCookie('check',"true",60);this.loadCookies();return this.getCookie('check')=="true"};mboxCookieManager.prototype.setCookie=function(K,M,u){if(typeof K!='undefined'&&typeof M!='undefined'&&typeof u!='undefined'){this.N[K]={name:K,value:escape(M),expireOn:Math.ceil(u+new Date().getTime()/1000)};this.saveCookies()}};mboxCookieManager.prototype.getCookie=function(K){var O=this.N[K];if(typeof O=='undefined'||O==null){return null}return unescape(O.value)};mboxCookieManager.prototype.deleteCookie=function(K){var P=new Object();for(O in this.N){if(O!=K){P[O]=this.N[O]}}this.N=P;this.saveCookies()};mboxCookieManager.prototype.getCookieNames=function(Q){var R=new Object();for(O in this.N){if(O.indexOf(Q)==0){R[R.length]=O}}return R};mboxCookieManager.prototype.saveCookies=function(){var S=new Array();var T=0;for(O in this.N){if(this.N[O]!=null){S[S.length]=this.N[O].name+"#"+this.N[O].value+"#"+this.N[O].expireOn;if(T<this.N[O].expireOn){T=this.N[O].expireOn}}}var U=new Date(T*1000);document.cookie=this.K+"="+S.join("|")+";expires="+U.toGMTString()+";path=/"+this.L};mboxCookieManager.prototype.loadCookies=function(){this.N=new Object();var V=document.cookie.indexOf(this.K+"=");if(V!=-1){var W=document.cookie.indexOf(";",V);if(W==-1){W=document.cookie.indexOf(",",V);if(W==-1){W=document.cookie.length}}var X=document.cookie.substring(V+this.K.length+1,W).split("|");var Y=Math.ceil(new Date().getTime()/1000);for(var c=0;c<X.length;c++){var O=X[c].split("#");if(Y<=O[2]){this.N[O[0]]={name:O[0],value:O[1],expireOn:O[2]}}}}};mboxSetCookie=function(K,M,u){mboxCookies.setCookie(K,M,u)};mboxGetCookie=function(K){return mboxCookies.getCookie(K)};mboxActivateById=function(e){mboxs[e].activate()};mboxCheckTimeoutById=function(e){mboxs[e].activate();if(!mboxs[e].isActivated()){mboxEnv.disable();window.location.reload(false)}};mboxCheckAll=function(){for(var D in mboxs){mboxs[D].finalize()}};mboxSetupSignal=function(Z,a){var b=new Array();for(var c=1;c<arguments.length;c++){b[c-1]=arguments[c]}mboxCookies.setCookie("signal-"+Z,b.join("&"),45*60)};mboxSignal=function(){var _=mboxCookies.getCookieNames("signal-");for(ab in _){var c=mboxCookies.getCookie(_[ab]);var b=c.split("&");var a=b[0];b[0]='mbox='+a;b[b.length]="mboxCount="+ --mboxSignalCount;var d=new mbox(a,b);d.put();mboxCookies.deleteCookie(_[ab])}};mboxDefaultContentDisplayNone=function(){document.write("<style>."+'mboxDefault'+" {visibility:hidden;}</style>")};mboxSession=function(a,b,c,d){this.eb=b;this.fb=c;this.gb=d;this.hb=false;this.e=mboxGetPageParameter(this.eb);if(this.e==null||this.e.length==0){this.e=mboxCookies.getCookie('session');if(this.e==null||this.e.length==0){this.e=a;this.hb=true}}mboxCookies.setCookie('session',this.e,d)};mboxSession.prototype.getId=function(){return this.e};mboxPC=function(a,b,c){this.fb=b;this.gb=c;this.e=mboxCookies.getCookie(this.fb);if(this.e==null||this.e.length==0){this.e=a}};mboxPC.prototype.getId=function(){mboxCookies.setCookie('PC',this.e,this.gb);return this.e};mboxPC.prototype.forceId=function(a){if(this.e!=a){this.e=a;mboxCookies.setCookie(this.fb,this.e,this.gb);return true}return false};mboxGenerateId=function(){return(new Date()).getTime()+"-"+Math.floor(Math.random()*999999)};mboxGetPageParameter=function(K){var q=null;var a=new RegExp(K+"=([^\&]*)");var b=a.exec(document.location);if(b!=null&&b.length>=2){q=b[1]}return q};mboxCookieIsEnabled=function(){mboxCookies.setCookie('check',"true",60);return mboxCookies.getCookie('check')=="true"};mboxSafeBodyOnload=function(p){if(window.addEventListener){window.addEventListener('load',p,false)}else if(document.addEventListener){document.addEventListener('load',p,false)}else if(document.attachEvent){window.attachEvent('onload',p)}};mboxCookiePageDomain=function(){var L=(/([^:]*)(:[0-9]{0,5})?/).exec(document.location.host)[1];var a=/[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}/;if(!a.exec(L)){var b=(/([^\.]+\.[^\.]{3}|[^\.]+\.[^\.]+\.[^\.]{2})$/).exec(L);if(b){L=b[0]}}return L?L:""};mboxCookieDomain=function(){return mboxCookiePageDomain()};if(typeof mboxVersion=='undefined'){var mboxVersion=22;var mboxServerURL="http://mbox4.offermatica.com/m2/cnet/mbox/standard";var mboxCookies=new mboxCookieManager("mbox",mboxCookieDomain());var mboxPageId=mboxGenerateId();var mboxSessionId=new mboxSession(mboxPageId,'mboxSession','session',31*60);var mboxPCId=new mboxPC(mboxPageId,'PC',63072000);var mboxs=new Object();var mboxCount=0;var mboxSignalCount=0;var mboxEnv=new mboxEnvironment('mboxDisable');var mboxPageStartTime=new Date().getTime();var mboxPageEndTime=mboxPageStartTime;mboxSafeBodyOnload(new Function("mboxPageEndTime = new Date().getTime()"));if(mboxEnv.isSupported()){mboxSafeBodyOnload(mboxCheckAll);mboxEnv.limitTraffic(100,10368000);if(mboxEnv.isEnabled()){mboxSignal();mboxDefaultContentDisplayNone()}}};mboxDisplayDebugInfo=function(){mboxDebugger.show()};mboxDebug=function(a,b,c){this.qb=a;this.p=null;var d=mboxGetPageParameter(b);if(d==null){d=mboxCookies.getCookie(this.qb)}if(d!=null){if(d.indexOf("x")==0){this.p=new mboxDebugActionNone();document.write('<'+'scr'+'ipt language="Javascript1.2" src='+'"http://admin4.offermatica.com/admin/mbox/mbox_debug_'+d+'.jsp"'+'><'+'\/scr'+'ipt>')}else if(d.indexOf("log")==0){this.p=new mboxDebugActionLog(d)}else if(d=="reset"){d=null}else{this.p=new mboxDebugActionDefault()}}if(this.p!=null){if(c.isSupported()){mboxSafeBodyOnload(mboxDisplayDebugInfo)}else{alert("mbox functionality is not supported on this browser");this.disable()}}if(d!=null){mboxCookies.setCookie(this.qb,d,45*60)}else{this.disable()}};mboxDebug.prototype.isEnabled=function(){return this.p!=null};mboxDebug.prototype.disable=function(){mboxCookies.deleteCookie(this.qb)};mboxDebug.prototype.setShowAction=function(p){this.p=p};mboxDebug.prototype.show=function(){if(this.p!=null){this.p.show()}};mboxDebugActionLog=function(a){this.rb=a;this.sb=(new Date()).getTime()};mboxDebugActionLog.prototype.show=function(){var a=(new Date()).getTime();var b=new mboxDebugWindow("Debug Log");b.putPageStart();b.put("<img src='http://mbox4.offermatica.com/admin/images/spacer.gif"+"?mboxDebug="+this.rb+"&mboxClient=cnet"+"&mboxPageLoadTime="+(a-this.sb)+"&mboxCount="+mboxCount+"&mboxSignalCount="+mboxSignalCount+"'>");b.put("<br />");b.putCloseButton();b.putPageEnd()};mboxDebugActionNone=function(){};mboxDebugActionNone.prototype.show=function(){alert("Debug mode not defined"+"\n('x-mode' not supported when debug is remote in mbox.js)")};mboxDebugActionDefault=function(){};mboxDebugActionDefault.prototype.show=function(){var b=new mboxDebugWindow("Debug");b.putPageStart();b.put("  <b>Mbox Debug Window (version:"+mboxVersion+")</b></br>");b.put("<p/>");b.put("<b>Page</b>: "+document.location);b.put(" <ul>");if(mboxEnv.isEnabled()){b.put("  <li>Enabled: true</li>")}else{b.put('  <li>Enabled: <span style="color:red"><b>false</b></span></li>')}b.put("  <li>Cookies enabled: "+mboxCookieIsEnabled()+"</li>");b.put("  <li>Page URL: '"+document.location+"'</li>");b.put("  <li>Cookies: '"+document.cookie+"'</li>");for(a in mboxs){b.put("  <li>mbox: '"+a+"'");b.put("   <ul>");if(mboxs[a].error!=null){b.put('   <li><span style="color: red"><b>Error: '+mboxs[a].error+'</b></span></li>')}var t=document.getElementById(mboxs[a].getMarkerName());if(t==null){b.put('    <li><span style="color: red">'+'<b>Error: can not find mbox in dom</b></span></li>')}else{b.put("    <li>has mboxDefault content div tags: "+(mboxs[a].getDefaultDiv()!=null)+"</li>")}b.put('    <li><a href="'+mboxs[a].getURL()+'">'+mboxs[a].getURL()+'</a></li>');b.put("   </ul>");b.put("  </li>")}b.put(" </ul>");b.putCloseButton();b.putPageEnd()};mboxDebugWindow=function(K){this.K=K+" "+document.location.hostname;var a=/\W/g;var b=this.K.replace(a,'_');this.ub=window.open("","mboxDebugWindow"+b,"width=600,height=300,resizable,scrollbars=yes,toolbar=yes");if(this.ub==null){alert("Unable to open Offermatica's mboxDebugWindow Window.\n"+"Are you blocking popups?\n");return}};mboxDebugWindow.prototype.put=function(a){if(this.ub==null){return}try{this.ub.document.writeln(a);this.ub.scrollBy(0,1000)}catch(e){alert("Unable to write to the current mboxDebug window.\n"+"Please close any open debug window");this.ub=null}};mboxDebugWindow.prototype.putCloseButton=function(){this.put("<a href=\"javascript:mboxDebugWindowClose()\">"+"click here to close debug window</a>")};mboxDebugWindow.prototype.putPageStart=function(){this.put("<html><head>"+" <title>"+this.K+"</title>"+"  <"+"scr"+"ipt>"+"   function mboxDebugWindowClose() {"+"     try {"+"       window.opener.mboxDebugger.disable();"+"     } catch(e) {"+"       alert('Could not disable debug mode.\\n'"+"         + 'Browse to a page containing an mbox and\\n'"+"         + 'click on close link.');"+"     }"+"     window.close();"+"   }"+"  <"+"\/scr"+"ipt>"+" </head>"+" <body>")};mboxDebugWindow.prototype.putPageEnd=function(){this.put("</body></html>");if(this.ub!=null){this.ub.document.close()}};if(typeof mboxDebugger=='undefined'){mboxDebugger=new mboxDebug("debug","mboxDebug",mboxEnv)};
/* end packed code */ 

} //end debug scripts
