/** * @object: jsPriceVOList * @desc: list of price ranges */ var jsPriceVOList = { "priceList": [ {"title":'Budget $28 - $67', "isSelected":false, "productCount":18 } , {"title":'Mid-range $61 - $149', "isSelected":false, "productCount":29 } , {"title":'High-end $147 - $309', "isSelected":false, "productCount":11 } ], /** * @method: getList * @desc: get all the data in the list */ getList: function() { return this.priceList; }, // end method: getList /** * @method: getListElement * @desc: get a data element in the list * @param: index - the index of the element to return */ getListElement: function(index) { return this.priceList[index]; }, // end method: getListElement /** * @method: getListElementSelectState * @desc: get the selection state for a data element in the list * @param: index - the index of the element to return selection state for */ getListElementSelectState: function(index) { return this.priceList[index].isSelected; }, // end method: getListElementSelectState /** * @method: getListElementLabel * @desc: get the label for a data element in the list * @param: index - the index of the element to return label for */ getListElementLabel: function(index) { return this.priceList[index].title; }, // end method: getListElementLabel /** * @method: getCount * @desc: get the number of list items * @params: */ getCount: function() { return this.priceList.length; }, // end method: getCount /** * @method: selectElement * @desc: set the element as selected * @param: index - the index of the element * @param: underlyingEvent - the underlying event */ selectElement: function(index, underlyingEvent) { //if (typeof gNewPA != 'undefined') { // new PA page pa.Filters.indexToInsertProductRangeFeature = gSelectedFeatures.length; // remember current index to insert product range filter in summary var feature = {'id':'9999','title':'Product Range','option':''}; gSelectedFeatures.push(feature); // add feature to the end of list scroll(0,0); // bring page to top so user can see selected filter //} this.priceList[index].isSelected = true; this.modelChangeEvent(new ModelEvent('select',this, index, underlyingEvent)); }, // end method: selectElement /** * @method: deselectElement * @desc: set the element as selected * @param: index - the index of the element * @param: underlyingEvent - the underlying event */ deselectElement: function(index, underlyingEvent) { this.priceList[index].isSelected = false; this.modelChangeEvent(new ModelEvent('deselect',this, index, underlyingEvent)); } // end method: deselectElement }; Model.attach(jsPriceVOList); // add the base model functionality // initialize the price model listenter jsPriceVOList.addChangeListener(processPriceCheckboxChange); var jsPopVOList = { "popularityList":[ {"title":'Value+Community', "isSelected":true } , {"title":'Value', "isSelected":false } , {"title":'Community', "isSelected":false } , {"title":'Price ($ to $$$)', "isSelected":false } , {"title":'Price ($$$ to $)', "isSelected":false } , {"title":'New', "isSelected":false } , {"title":'Last Added', "isSelected":false } ] }; var jsBrandVOList = { "brandList": [ { "vendorID":413704, "brandName":'Cobra', "isSelected":false, "isTopBrand":false, "productCount":25, "bId":"b"+0 } , { "vendorID":280293, "brandName":'Motorola', "isSelected":false, "isTopBrand":false, "productCount":16, "bId":"b"+1 } , { "vendorID":470865, "brandName":'Uniden', "isSelected":false, "isTopBrand":false, "productCount":12, "bId":"b"+2 } , { "vendorID":8903023, "brandName":'TriSquare', "isSelected":false, "isTopBrand":false, "productCount":2, "bId":"b"+3 } , { "vendorID":468204, "brandName":'Kenwood', "isSelected":false, "isTopBrand":false, "productCount":2, "bId":"b"+4 } , { "vendorID":547757, "brandName":'ICOM', "isSelected":false, "isTopBrand":false, "productCount":1, "bId":"b"+5 } ], "topBrandsList": [], // this will keep a list of indexes into brandList for the top brand checkboxes /** * @method: getList * @desc: get all the data in the list */ getList: function() { var list = []; for (var i=0; i 0 && document.location.hash.match('#_h_') == null ){ // Bug 3590: PA page should honor the filters selection from 'overview' page // this means the hash does have filters intead of history marks, usually this comes from the filters from 'overview' page optionPath = document.location.hash; }else if(getCookieData(pa.Filters.paFilters+jsFeatureCategoryID) != null ){ //Bug 3398: Remember the last known filter for the last category in cookie optionPath = getCookieData(pa.Filters.paFilters+jsFeatureCategoryID); } */ // this is when the page is first loaded with some pass in hash else{ optionPath = document.location.hash; } // add a '+' ahead to differentiate f= and qf= optionPath = '+' + optionPath.replace(/^#/, ''); //DebugLog.error('optionPath: '+optionPath); // need to call reset of Filters to clean up the slate before loading from cache. pa.Filters.reset(); //var start = optionPath.indexOf('#'); var preSelectedVendors = getVendorList(); rurl = ''; if ( optionPath.length ==0 && (preSelectedVendors==null || preSelectedVendors.length==0) ) { setInitQuickLinkDefault(); return 'none'; } if (pa.DiscoveryStartup.inStartup) { DelayExecutor.getDefaultExecutor().setIsModal(false); pa.DiscoveryStartup.inStartup = false; gSendAdAndTracking = false; // initialize as false, Bug 3487 } //DebugLog.error('in initPage: '+optionPath); var i, changed = false, serverCall = false; var ranges = parseInitOption(optionPath, "r="); if(ranges && ranges.length > 0){ for (i = 0 ; i < ranges.length ; i++) { jsPriceVOList.priceList[ranges[i]].isSelected = true; serverCall = true; } }else{ // need to reset isSelected to false to make 'back' button work for(i = 0 ; i < jsPriceVOList.priceList.length ; i++) { jsPriceVOList.priceList[i].isSelected = false; } } ranges = parseInitOption(optionPath, "v="); // these are the brands from the url search, should only apply it on the very initial load of the page if( preSelectedVendors != null && preSelectedVendors.length>0 && HistoryManager.isInitLoad() ){ ranges.push(preSelectedVendors); ranges = ranges.flatten().uniq(); } if(ranges && ranges.length > 0){ for (i = 0 ; i < ranges.length ; i++) { for(var b=0; b < jsBrandVOList.brandList.length; b++) { if(jsBrandVOList.brandList[b].vendorID == ranges[i]){ jsBrandVOList.brandList[b].isSelected = true; serverCall = true; } } } // Bug 3938, need to add the selection to tracking too gVendorSurveyTracking(); }else{ // need to reset isSelected to false to make 'back' button work for(i = 0 ; i < jsBrandVOList.brandList.length ; i++) { jsBrandVOList.brandList[i].isSelected = false; } } ranges = parseInitOption(optionPath, "+s="); if (ranges.length > 0) { // do something here to set the sorting criteria. var popList = jsPopVOList.popularityList; for (i = 0 ; i < popList.length ; i++ ) { popList[i].isSelected = false; } popList[ranges[0]].isSelected = true; gSortIndex = ranges[0]; changed = true; } ranges = parseInitOption(optionPath, gProductRangeIndexParam+"="); if (ranges.length > 0) { pa.Filters.indexToInsertProductRangeFeature = parseInt(ranges[0]); } ranges = parseInitOption(optionPath, gBrandFilterIndexParam+"="); if (ranges.length > 0) { pa.Filters.indexToInsertBrandFeature = parseInt(ranges[0]); } /* ranges = parseInitOption(optionPath, gPriceFilterIndexParam+"="); if (ranges.length > 0) { pa.Filters.customPriceFilterIndex = parseInt(ranges[0]); }*/ ranges = parseInitOption(optionPath, gKeywordFilterIndexParam+"="); if (ranges.length > 0) { pa.Filters.indexToInsertKeywordFeature = parseInt(ranges[0]); } // this is the case of the logical 'back' action called by the HistoryManager, we need to reset // all the quick links to false first. Don't do that with initial load because there might be some // quick link preseted by the SEO html if (newFilter != undefined){ for(var i=0; i< jsQuickLinksList.length; i++){ jsQuickLinksList[i].isSelected = false; } } ranges = parseInitOption(optionPath, "qf="); if (ranges.length > 0) { for(var i=0; i< jsQuickLinksList.length; i++){ if(jsQuickLinksList[i].linkTxt.toLowerCase() == decodeURIComponent(ranges[0].toLowerCase()) ){ jsQuickLinksList[i].isSelected = true; QuickLinkPA.current = i; if(ranges[0].toLowerCase() != 'all') serverCall = true; break; } } } for(var i=0; i< jsQuickLinksList.length; i++){ if( jsQuickLinksList[i].isSelected ){ QuickLinkPA.current = i; if( jsQuickLinksList[i].linkTxt.toLowerCase() != 'all') serverCall = true; break; }else{ if( jsQuickLinksList[i].linkTxt.toLowerCase() == 'all'){ QuickLinkPA.current = i; } } } // keywords query ranges = parseInitOption(optionPath, "kq="); if (ranges.length > 0) { var feature = {'id':7777, 'title': pa.Filters.KeywordsStr ,'option': decodeURIComponent(ranges[0]) }; gSelectedFeatures.push(feature); // add feature to the end of list serverCall = true; } /*ranges = parseInitOption(optionPath, "selectedFeatures="); if (ranges.length > 0) { StickyCache.put('selectedFeatures', ranges.join(',')); } */ // Bug 3145: Quick filter links don't work properly... ranges = parseInitOption(optionPath, "+f="); if (ranges.length > 0) { pa.Filters.loadSelectedFeaturesFromCache(ranges); serverCall = true; } if (serverCall) { rurl = gComposeRurl(); if( HistoryManager.isInitLoad() ){ // only set the _history[0] on the initial load of the page HistoryManager.replace(0, rurl); } return rurl; } else { return changed ? 'basic' : 'none'; } } // quick link defaults to the last one ( 'All' ), which doesn't need to talk to the server for filtering function setInitQuickLinkDefault( ){ jsQuickLinksList[jsQuickLinksList.length - 1].isSelected = true; QuickLinkPA.current = jsQuickLinksList.length - 1; } function getWhatToExpectStr() { var expect = "0.10 - 4.0 miles+?5.0 - 7.0 miles+?8.0 - 14.0 miles+?"; return expect; } function getWhatToExpect() { topContentDisplay = 'a'; StickyCache.put('ui', 'a'); var myobj = document.getElementById('whatsImportantToMe'); if (myobj != null) { myobj.style.display = "none"; } var myobj1 = document.getElementById('outerExpectDiv'); if (myobj1== null) { var expect = "
We have analyzed " + gProductVOArr.length + " 2-way radios and have grouped them into the following ranges based on price and features. Click Select Preferences to proceed.
Budget

$28 - $67
• 0.10 - 4.0 miles
Mid-range

$61 - $149
• 5.0 - 7.0 miles
High-end

$147 - $309
• 8.0 - 14.0 miles
"; expect += '
'; expect += '
'; expect += 'Select Preferences'; expect +='
'; expect +='
'; $("contentarea").update(expect); var buttonSelectPreferencesModel = { processClick: function(theEvent) { getWhatsImpTimeout.processEvent(theEvent); return false; } // end method: processClick }; Model.attach(buttonSelectPreferencesModel); // add the base model functionality new Button("buttonSelectPreferences",buttonSelectPreferencesModel,Button.RED_PUSH); } else { myobj1.style.display = ""; } if (gUseAnimation) { var expectNextStepElement = $("expectNextStep"); var outerExpectDivElement = $("outerExpectDiv"); if (expectNextStepElement) { expectNextStepElement.hide(); } if (outerExpectDivElement) { outerExpectDivElement.hide(); } if (outerExpectDivElement) { new Effect.Appear('outerExpectDiv',{duration:1.5}); } if (expectNextStepElement) { new Effect.Appear('expectNextStep',{duration:1.5}); } } } function get411Text() { return "
We have analyzed all the 2-way radios and have grouped them into the following ranges based on price and features.
Budget

$28 - $67
• 0.10 - 4.0 miles
Mid-range

$61 - $149
• 5.0 - 7.0 miles
High-end

$147 - $309
• 8.0 - 14.0 miles
"; } function getVendorList() { return null; } var gInitialRawProductsArr = [{"data":[413704,"Cobra 148GTL","http://a367.yahoofs.com/shopping/3082629/simg_t_ts189826177144ea75d3b421b812a924a364a3700jpg85?rm_____Dte8HkkQM","85x64","http://a367.yahoofs.com/shopping/3082629/simg_t_ms189826177144ea75d3b421b812a924a364a3700jpg175?rm_____DJUOCMLBK","175x131","136.00","208.90",193,21,[2,1,0,3235],"145.69",421406,0,"High-end 2-way radio","Average feature set","/s/Cobra-148GTL-2-way-Radios-review-manual/id/421ag406/t/1-2/",null,"4.4","","1993055887","The Original 148 GTL is back...and better than ever! Professional driver-requested improvements include a front panel microphone connector for convenient in-dash installation, 9 foot microphone cord ...",true,null,0,36,75,"2-way radio","Others","Cobra",9,900501,true,6,1,28800000,0]},{"data":[413704,"Cobra 25WXNWST","http://a367.yahoofs.com/shopping/3088923/simg_t_ts0625347f0f232c42c6e4dd4aeace798b7f28627jpg85?rm_____DLA.k..RD","85x64","http://a367.yahoofs.com/shopping/3088923/simg_t_ms0625347f0f232c42c6e4dd4aeace798b7f28627jpg175?rm_____DmR9Wqapr","175x131","116.01","139.52",177,147,[1,1,2,3118],"122.58",421418,3,"Mid-range 2-way radio","Average feature set","/s/Cobra-25WXNWST-2-way-Radios-review-manual/id/421ag418/t/1-2/",null,"2.9","","1991279818","The NightWatch series of CB radios continues Cobra's proud and unmatched tradition of enhancing safety and convenience for professional drivers. NightWatch technology fully illuminates the radio's ...",true,null,0,0,75,"2-way radio","Others","Cobra",5,900501,true,6,0,28800000,0]},{"data":[413704,"Cobra 75WXST","http://a367.yahoofs.com/shopping/3077837/simg_t_ts1151487ea5120acf1cc4fdf82437f329ce96e82jpg85?rm_____Dg19xWCKt","85x64","http://a367.yahoofs.com/shopping/3077837/simg_t_ms1151487ea5120acf1cc4fdf82437f329ce96e82jpg175?rm_____DnuXViFmb","175x131","119.99","122.75",176,52,[1,2,0,3183],"121.37",421429,0,"Mid-range 2-way radio","Better than average features","/s/Cobra-75WXST-2-way-Radios-review-manual/id/421bh429/t/1-2/",null,"4.15","","1990907193","The C75-WXST is an all-in-handset Mobile CB with Soundtracker and weather channels. SoundTracker is the first patented technology that dramatically improves the transmission and reception of CB radio ...",true,null,0,45,75,"2-way radio","Others","Cobra",2,900501,true,6,0,28800000,0]},{"data":[413704,"Cobra HH38 WXST","http://a367.yahoofs.com/shopping/3084399/simg_t_ts260648860f381aabfb944d7a90be33c8bd2aa95jpg85?rm_____DmSqwd70S","85x64","http://a367.yahoofs.com/shopping/3084399/simg_t_ms260648860f381aabfb944d7a90be33c8bd2aa95jpg175?rm_____DvJDvQyfQ","175x131","77.75","104.42",151,58,[1,2,0,3174],"92.90",421432,1,"Mid-range 2-way radio","Better than average features","/s/Cobra-HH38-WXST-2-way-Radios-review-manual/id/421bh432/t/1-2/",null,"3.2","","1991717183","Whatever your outdoor activity, Cobra's compact handheld CB radios are a great way to stay in touch with friends, or the over 30 million other CB radios in use across the country. Plus complete access ...",true,null,0,103,75,"2-way radio","Others","Cobra",6,900501,true,6,0,28800000,0]},{"data":[470865,"Uniden PC68XL","http://a367.yahoofs.com/shopping/3082321/simg_t_ts1998058e9d0c7d171254f21bea1d9d9ba0bddc9jpg85?rm_____DLZPQkIcZ","85x64","http://a367.yahoofs.com/shopping/3082321/simg_t_ms1998058e9d0c7d171254f21bea1d9d9ba0bddc9jpg175?rm_____DS4G5TorD","175x131","79.99","94.32",148,101,[1,1,1,3149],"89.19",471697,3,"Mid-range 2-way radio","Average feature set","/s/Uniden-PC68XL-2-way-Radios-review-manual/id/471dj697/t/1-2/",null,"4.15","","1991419694","Uniden is creating a World Without Wires. Which means that Uniden is building products that give its customers more freedom to enjoy life, solve problems and always stay connected with others. From ...",true,null,0,6,75,"2-way radio","Others","Uniden",3,900501,true,6,0,28800000,0]},{"data":[470865,"Uniden PC68ELITE","http://a367.yahoofs.com/shopping/3085021/simg_t_ts204786313d5e7b271db4c44b9201b5fc4aa2eaajpg85?rm_____DuMNwtFRc","85x64","http://a367.yahoofs.com/shopping/3085021/simg_t_ms204786313d5e7b271db4c44b9201b5fc4aa2eaajpg175?rm_____DpbNr5C1o","175x131","113.61","149.99",179,141,[1,1,2,3127],"124.99",471699,3,"Mid-range 2-way radio","Average feature set","/s/Uniden-PC68ELITE-2-way-Radios-review-manual/id/471dj699/t/1-2/",null,"4.0","","1991424904","It's tough and powerful with a rugged front mic, a 40-channel auto noise/noise blanker switch, instant channel 9, dynamic squelch control, an RF gain, a mic gain, and a channel selector.",true,null,0,3,75,"2-way radio","Others","Uniden",3,900501,true,6,0,28800000,0]},{"data":[470865,"Uniden PRO520XL","http://a367.yahoofs.com/shopping/3086038/simg_t_ts250783231c5a324155447dcba777c24a174b695jpg85?rm_____DiR77.C6p","85x64","http://a367.yahoofs.com/shopping/3086038/simg_t_ms250783231c5a324155447dcba777c24a174b695jpg175?rm_____DsfV3vv7n","175x131","54.97","71.06",108,102,[0,2,1,3148],"59.99",471700,3,"Budget 2-way radio","Better than average features","/s/Uniden-PRO520XL-2-way-Radios-review-manual/id/471ag700/t/1-2/",null,"4.3","","1991687124","The Uniden PRO520AXL is an advanced mobile radio designed for use in the Citizens Band Radio service. It will operate on any of the 40 AM frequencies authorized by the Federal Communications ...",true,null,0,6,75,"2-way radio","Others","Uniden",5,900501,true,6,0,28800000,0]},{"data":[470865,"Uniden ATLANTIS250","http://a367.yahoofs.com/shopping/3081809/simg_t_ts19979119479950099024c38918c745525ad7006jpg85?rm_____DUv0tYygK","85x64","http://a367.yahoofs.com/shopping/3081809/simg_t_ms19979119479950099024c38918c745525ad7006jpg175?rm_____DHN_IDApj","175x131","86.86","88.49",146,140,[1,0,1,3130],"87.68",471756,3,"Mid-range 2-way radio","Below average feature set","/s/Uniden-ATLANTIS250-2-way-Radios-review-manual/id/471ci756/t/1-2/",null,"3.15","","1991420966","Uniden is creating a World Without Wires. Which means that Uniden is building products that give its customers more freedom to enjoy life, solve problems and always stay connected with others. From ...",true,null,0,6,75,"2-way radio","Others","Uniden",2,900501,true,6,0,28800000,0]},{"data":[470865,"Uniden MHS350","http://a367.yahoofs.com/shopping/3081679/simg_t_ts22918809806165369604e5590f7b6f75c290272jpg85?rm_____Di9jZrAWO","85x64","http://a367.yahoofs.com/shopping/3081679/simg_t_ms22918809806165369604e5590f7b6f75c290272jpg175?rm_____DpL0BjPpC","175x131","126.99","141.48",185,95,[1,2,1,3153],"133.24",471776,3,"Mid-range 2-way radio","Better than average features","/s/Uniden-MHS350-2-way-Radios-review-manual/id/471ci776/t/1-2/",null,"5.0","","1991565719","Uniden is creating a World Without Wires. Which means that Uniden is building products that give its customers more freedom to enjoy life, solve problems and always stay connected with others. From ...",true,null,0,3,75,"2-way radio","Others","Uniden",6,900501,true,6,0,28800000,0]},{"data":[470865,"Uniden OCEANUSDSC-BK","http://a367.yahoofs.com/shopping/3080302/simg_t_ts201877071a59cc5178f4808a546de8c1758ffbajpg85?rm_____D7Q_r3Hbk","85x64","http://a367.yahoofs.com/shopping/3080302/simg_t_ms201877071a59cc5178f4808a546de8c1758ffbajpg175?rm_____DTdbH3D8g","175x131","123.49","169.99",187,122,[1,2,1,3139],"136.12",471779,3,"Mid-range 2-way radio","Better than average features","/s/Uniden-OCEANUSDSC-BK-2-way-Radios-review-manual/id/471dj779/t/1-2/",null,"2.9","","1991419695","Uniden is creating a World Without Wires. Which means that Uniden is building products that give its customers more freedom to enjoy life, solve problems and always stay connected with others. From ...",true,null,0,0,75,"2-way radio","Others","Uniden",4,900501,true,6,0,28800000,0]},{"data":[470865,"Uniden VOYAGER","http://a367.yahoofs.com/shopping/3080303/simg_t_ts20187872564e38551ea49e293bee87a8bbe9591jpg85?rm_____DlqvsI7K_","85x64","http://a367.yahoofs.com/shopping/3080303/simg_t_ms20187872564e38551ea49e293bee87a8bbe9591jpg175?rm_____DBwCwe3Zh","175x131","143.99","167.61",195,136,[1,2,1,3131],"148.03",471794,3,"Mid-range 2-way radio","Better than average features","/s/Uniden-VOYAGER-2-way-Radios-review-manual/id/471dj794/t/1-2/",null,"5.0","","1991419696","Uniden is creating a World Without Wires. Which means that Uniden is building products that give its customers more freedom to enjoy life, solve problems and always stay connected with others. From ...",true,null,0,1,75,"2-way radio","Others","Uniden",4,900501,true,6,0,28800000,0]},{"data":[547757,"ICOM IC-M72","http://f5c.yahoofs.com/shopping/3116382/simg_t_ts54961557d9691437b6442df909b231844bf79cbjpg85?rm_____DkL8FGTHN","85x64","http://f5c.yahoofs.com/shopping/3116382/simg_t_ms54961557d9691437b6442df909b231844bf79cbjpg175?rm_____Dt7QkE3pB","175x131","212.28","329.00",258,142,[2,1,2,3127],"270.64",556357,3,"High-end 2-way radio","Average feature set","/s/ICOM-IC-M72-2-way-Radios-review-manual/id/556ci357/t/1-2/",null,"4.65","","1995759795","Marketing description is not available.",true,null,0,3,75,"2-way radio","Others","ICOM",2,900501,true,6,0,28800000,0]},{"data":[470865,"Uniden PRO538W","http://a367.yahoofs.com/shopping/3078025/simg_t_ts14779160077c8e5655f4969ba9bf0878be482fajpg85?rm_____DFkVO7Luz","85x64","http://a367.yahoofs.com/shopping/3078025/simg_t_ms14779160077c8e5655f4969ba9bf0878be482fajpg175?rm_____D6aR0dVPw","175x131","63.69","63.73",114,48,[1,1,0,3191],"63.71",8899718,0,"Mid-range 2-way radio","Average feature set","/s/Uniden-PRO538W-2-way-Radios-review-manual/id/8899ag718/t/1-2/",null,"4.4","","1991265172","Uniden is creating a World Without Wires. Which means that Uniden is building products that give its customers more freedom to enjoy life, solve problems and always stay connected with others. From ...",true,null,0,21,75,"2-way radio","Others","Uniden",2,900501,true,6,0,1199958689900,0]},{"data":[8903023,"TriSquare TSX100","http://a367.yahoofs.com/shopping/3103758/simg_t_ts4907363f005f31da3b0425ca7ef49cde8b0a6e8jpg85?rm_____DUURbGBDM","85x64","http://a367.yahoofs.com/shopping/3103758/simg_t_ms4907363f005f31da3b0425ca7ef49cde8b0a6e8jpg175?rm_____D.oNGKbGU","175x131","57.17","78.26",116,88,[1,0,1,3156],"65.11",8903643,3,"Mid-range 2-way radio","Below average feature set","/s/TriSquare-TSX100-2-way-Radios-review-manual/id/8903bh643/t/1-2/",null,"3.15","","1995174811","TriSquare has revolutionized 2-way radio communication with eXtreme Radio Service (eXRSTM). Advanced digital technology ensures longest range, unmatched clarity and interference free ...",true,null,0,6,75,"2-way radio","Others","TriSquare",6,900501,true,6,0,1199961499188,0]},{"data":[8903023,"TriSquare TSX300","http://a367.yahoofs.com/shopping/3103758/simg_t_ts49073628a7ffba35fed499bb3e040610177c3b5jpg85?rm_____D5OkJNoPn","85x64","http://a367.yahoofs.com/shopping/3103758/simg_t_ms49073628a7ffba35fed499bb3e040610177c3b5jpg175?rm_____D0mWkxCMW","175x131","74.25","99.99",146,89,[1,1,1,3155],"87.50",8903644,1,"Mid-range 2-way radio","Average feature set","/s/TriSquare-TSX300-2-way-Radios-review-manual/id/8903bh644/t/1-2/",null,"3.7","","1995174806","PRODUCT FEATURES:900 MHz frequency hopping spread spectrum10 billion channelsSecure conversation - no eavesdroppingPhone book stores up to 100 contact entriesVoice operated transmitBacklit dot matrix ...",true,null,0,10,75,"2-way radio","Others","TriSquare",5,900501,true,6,0,1199961499188,0]},{"data":[280293,"Motorola CLS 1410","http://a367.yahoofs.com/shopping/3083494/simg_t_ts23646287ef02597d0704f8188f3abb35f12a737jpg85?rm_____DIbmeDXBf","85x64","http://a367.yahoofs.com/shopping/3083494/simg_t_ms23646287ef02597d0704f8188f3abb35f12a737jpg175?rm_____DFDPei6gq","175x131","159.00","189.02",209,57,[2,1,0,3176],"169.00",8909215,3,"High-end 2-way radio","Average feature set","/s/Motorola-CLS-1410-2-way-Radios-review-manual/id/8909ag215/t/1-2/",null,"4.0","","1991610451","To provide businesses with that competitive edge, Motorola has developed an easy-to-use, affordable wireless solution - CLS Business Two-Way Radios. Helping businesses offer superior customer service, ...",true,null,0,2,75,"2-way radio","Others","Motorola",3,900501,true,6,0,1199966920027,0]},{"data":[280293,"Motorola Talkabout T8500R","http://a367.yahoofs.com/shopping/3103064/simg_t_ts4893631ed813b49015b4eda9f4f0236f1c74e7fjpg85?rm_____D4frfI2wJ","85x64","http://a367.yahoofs.com/shopping/3103064/simg_t_ms4893631ed813b49015b4eda9f4f0236f1c74e7fjpg175?rm_____DIGzqEfSW","175x131","59.99","79.99",123,167,[0,1,2,3085],"69.99",8909251,2,"Budget 2-way radio","Average feature set","/s/Motorola-T8500R-2-way-Radios-review-manual/id/8909bh251/t/1-2/",null,"2.25","","1994908585","Whether it's being used on the playground, at theme parks, on camping trips, in the neighborhood or at the mall, this radio delivers guaranteed Motorola durability.",true,null,0,30,75,"2-way radio","Others","Motorola",0,900501,true,6,0,1199966920183,0]},{"data":[280293,"Motorola XU2100","http://a367.yahoofs.com/shopping/3082022/simg_t_ts239217812e2f17dfd35466dbb3eba240bf9247cjpg85?rm_____DPqrb07Gi","85x64","http://a367.yahoofs.com/shopping/3082022/simg_t_ms239217812e2f17dfd35466dbb3eba240bf9247cjpg175?rm_____DE8WJ9FCC","175x131","199.95","252.13",239,156,[2,1,2,3104],"226.04",8909254,3,"High-end 2-way radio","Average feature set","/s/Motorola-XU2100-2-way-Radios-review-manual/id/8909ci254/t/1-2/",null,"3.0","","1991598938","The Motorola XTN Series of business two-way radios is designed for heavy duty, everyday industrial use. The lightweight XTN Series is perfectly suited for construction, manufacturing, property ...",true,null,0,2,75,"2-way radio","Others","Motorola",2,900501,true,6,0,1199966920198,0]},{"data":[413704,"Cobra 25-NW","http://a367.yahoofs.com/shopping/3088173/simg_t_ts1150874cf3ab789e3b140928e22494fd4c46352jpg85?rm_____D3XxTG7BA","85x64","http://a367.yahoofs.com/shopping/3088173/simg_t_ms1150874cf3ab789e3b140928e22494fd4c46352jpg175?rm_____D8GFF_aly","175x131","84.90","90.43",148,139,[1,0,1,3130],"89.95",8913510,3,"Mid-range 2-way radio","Below average feature set","/s/Cobra-25-NW-2-way-Radios-review-manual/id/8913ag510/t/1-2/",null,"3.85","","1990890101","Building on its leadership role in pioneering breakthrough innovations in Citizens Band (CB) radios, Cobra Electronics offers this NightWatch series of CB radios. This line of CB radios, all featuring ...",true,null,0,7,75,"2-way radio","Others","Cobra",3,900501,true,6,0,1199969760159,0]},{"data":[413704,"Cobra 29-NW","http://a367.yahoofs.com/shopping/3086090/simg_t_ts13139105b3f05a717b04ea09d3c13758daa2cdcjpg85?rm_____Dwx0BOLhP","85x64","http://a367.yahoofs.com/shopping/3086090/simg_t_ms13139105b3f05a717b04ea09d3c13758daa2cdcjpg175?rm_____DxVWr6rJI","175x131","131.91","169.99",196,88,[2,0,1,3156],"150.32",8913512,3,"High-end 2-way radio","Below average feature set","/s/Cobra-29-NW-2-way-Radios-review-manual/id/8913ag512/t/1-2/",null,"4.2","","1990973095","NightWatch series of CB radios continues Cobra's proud and unmatched tradition of enhancing safety and convenience for professional drivers. NightWatch technology fully illuminates the radio's ...",true,null,0,5,75,"2-way radio","Others","Cobra",8,900501,true,6,0,1199969760206,0]},{"data":[413704,"Cobra 25-LTD","http://a367.yahoofs.com/shopping/3080201/simg_t_ts147848635373eb4034641a59da98e608ebae0e2jpg85?rm_____DqwYhzdFA","85x64","http://a367.yahoofs.com/shopping/3080201/simg_t_ms147848635373eb4034641a59da98e608ebae0e2jpg175?rm_____DgSHMggRS","175x131","83.99","120.00",159,59,[1,2,0,3173],"100.82",8913513,3,"Mid-range 2-way radio","Better than average features","/s/Cobra-25-LTD-2-way-Radios-review-manual/id/8913ag513/t/1-2/",null,"4.6","","1991265295","Back by popular demand - The 25 LTD! The 25 LTD is back... and better than ever! Professional driver-requested improvements include a front panel microphone connector (for convenient in-dash ...",true,null,0,5,75,"2-way radio","Others","Cobra",9,900501,true,6,0,1199969760206,0]},{"data":[470865,"Uniden Atlantis250-G","http://a367.yahoofs.com/shopping/3082283/simg_t_ts339901804e20ea3f2fb46a686163e63c10eec52jpg85?rm_____DR48ryTNr","85x64","http://a367.yahoofs.com/shopping/3082283/simg_t_ms339901804e20ea3f2fb46a686163e63c10eec52jpg175?rm_____DGb5wgTk2","175x131","86.86","107.97",147,124,[1,0,1,3138],"88.49",8913518,3,"Mid-range 2-way radio","Below average feature set","/s/Uniden-Atlantis250-G-2-way-Radios-review-manual/id/8913ag518/t/1-2/",null,"4.1","","1993701418","Uniden is creating a World Without Wires. Which means that Uniden is building products that give its customers more freedom to enjoy life, solve problems and always stay connected with others. From ...",true,null,0,7,75,"2-way radio","Others","Uniden",3,900501,true,6,0,1199969760222,0]},{"data":[413704,"Cobra 18-WXSTII","http://a367.yahoofs.com/shopping/3088175/simg_t_ts115089856cb459d68ed4e34a4793701325de892jpg85?rm_____DJkCg.Aff","85x64","http://a367.yahoofs.com/shopping/3088175/simg_t_ms115089856cb459d68ed4e34a4793701325de892jpg175?rm_____DpRDJeuCp","175x131","63.11","69.99",117,101,[0,2,1,3149],"65.99",8932271,3,"Budget 2-way radio","Better than average features","/s/Cobra-18-WXSTII-2-way-Radios-review-manual/id/8932ci271/t/1-2/",null,"5.0","","1990907177","Cobra Electronics is a leading global manufacturer of innovative mobile communications products for consumers, having attained a leadership position in every market in which it currently does ...",true,null,0,1,75,"2-way radio","Others","Cobra",3,900501,true,6,0,1199983767366,0]},{"data":[413704,"Cobra HH-ROADTRIP","http://a367.yahoofs.com/shopping/3082652/simg_t_ts18983320431c368f0d4427fb97f244f4d096e03jpg85?rm_____DGkDDAB4E","85x64","http://a367.yahoofs.com/shopping/3082652/simg_t_ms18983320431c368f0d4427fb97f244f4d096e03jpg175?rm_____DbVfo2zQi","175x131","74.99","150.00",151,94,[1,1,1,3153],"92.78",8932277,3,"Mid-range 2-way radio","Average feature set","/s/Cobra-HH-ROADTRIP-2-way-Radios-review-manual/id/8932ci277/t/1-2/",null,"5.0","","1993609151","Whatever your outdoor activity, Cobra's compact handheld CB radios are a great way to stay in touch with friends. Complete access to 10 National Weather Channels (7 NOAA and 3 International) for the ...",true,null,0,2,75,"2-way radio","Others","Cobra",8,900501,true,6,0,1199983767381,0]},{"data":[413704,"Cobra MRF45","http://a367.yahoofs.com/shopping/3100214/simg_t_ts46973807d816358a22b4bcc8337f2ea5ecda5d8jpg85?rm_____D.6Bo9kdZ","85x64","http://a367.yahoofs.com/shopping/3100214/simg_t_ms46973807d816358a22b4bcc8337f2ea5ecda5d8jpg175?rm_____DmPVBq6G5","175x131","99.99","100.59",159,103,[1,1,1,3148],"100.29",8932281,3,"Mid-range 2-way radio","Average feature set","/s/Cobra-MRF45-2-way-Radios-review-manual/id/8932dj281/t/1-2/",null,"2.9","","1994936006","PRODUCT FEATURES:1-25 watts output powerOne button DSC (Digital Selective Calling)GPS compatibilityAll weather channels and weather alertSubmersible (JIS7 Standards)Instant access to channel ...",true,null,0,0,75,"2-way radio","Others","Cobra",2,900501,true,6,0,1199983767397,0]},{"data":[413704,"Cobra MRF80B","http://a367.yahoofs.com/shopping/3100214/simg_t_ts46973815f84e3968e2b4ce98e6eadc7e39aefaajpg85?rm_____DC_FrJjuV","85x64","http://a367.yahoofs.com/shopping/3100214/simg_t_ms46973815f84e3968e2b4ce98e6eadc7e39aefaajpg175?rm_____DJ.nYzL9o","175x131","131.99","152.81",196,146,[1,1,2,3120],"150.09",8932282,3,"Mid-range 2-way radio","Average feature set","/s/Cobra-MRF80B-2-way-Radios-review-manual/id/8932dj282/t/1-2/",null,"4.0","","1994936011","PRODUCT FEATURES:Class-D DSC CapabilityOnly Cobra has the Rewind-Say-AgainTM Digital Voice Recording FeatureLocal and Distant Mode for Busy Waterways and Maximum SensitivityChannel ID-Channel ...",true,null,0,1,75,"2-way radio","Others","Cobra",3,900501,true,6,0,1199983767397,0]},{"data":[413704,"Cobra MRHH325VP","http://a367.yahoofs.com/shopping/3100214/simg_t_ts4697382dd034b6f360b4ccd82d37a4833605f9fjpg85?rm_____Dxeay7s7p","85x64","http://a367.yahoofs.com/shopping/3100214/simg_t_ms4697382dd034b6f360b4ccd82d37a4833605f9fjpg175?rm_____D7FgAM0Ai","175x131","93.12","108.75",158,58,[1,2,0,3174],"99.99",8932283,3,"Mid-range 2-way radio","Better than average features","/s/Cobra-MRHH325VP-2-way-Radios-review-manual/id/8932dj283/t/1-2/",null,"2.9","","1994936013","PRODUCT FEATURES:External Speakers/Mic JackSelectable Power Outlet-1,3 or 5 WattsLarge Illuminated Display (Up to 60% Larger that the Competition)All 10 NOAA/Weather Channels (24 Hour All Hazards ...",true,null,0,0,75,"2-way radio","Others","Cobra",6,900501,true,6,0,1199983767397,0]},{"data":[413704,"Cobra MRHH425LIVP","http://a367.yahoofs.com/shopping/3099569/simg_t_ts469738374d5fd3b520a468795e7676bc9ed8de1jpg85?rm_____DUbuxkhR5","85x64","http://a367.yahoofs.com/shopping/3099569/simg_t_ms469738374d5fd3b520a468795e7676bc9ed8de1jpg175?rm_____D5VYMPP9v","175x131","125.97","149.99",184,57,[1,2,0,3176],"132.06",8932284,3,"Mid-range 2-way radio","Better than average features","/s/Cobra-MRHH425LIVP-2-way-Radios-review-manual/id/8932dj284/t/1-2/",null,"1.0","","1994942592","Cobra Electronics is a leading global manufacturer of mobile communications products for consumers, having attained a leadership position in every market in which it currently does business. Cobra has ...",true,null,0,1,75,"2-way radio","Others","Cobra",6,900501,true,6,0,1199983767397,0]},{"data":[280293,"Motorola CLS 1110","http://a367.yahoofs.com/shopping/3078741/simg_t_ts2275251b2b9c7840f434ebd8d75313fd4b755a1jpg85?rm_____D8WqO6RPm","85x64","http://a367.yahoofs.com/shopping/3078741/simg_t_ms2275251b2b9c7840f434ebd8d75313fd4b755a1jpg175?rm_____DhNnm5kJC","175x131","139.00","164.73",194,89,[2,0,1,3155],"147.65",8932304,3,"High-end 2-way radio","Below average feature set","/s/Motorola-CLS-1110-2-way-Radios-review-manual/id/8932ag304/t/1-2/",null,"4.5","","1991555120","To provide businesses with that competitive edge, Motorola has developed an easy-to-use, affordable wireless solution - CLS Business Two-Way Radios. Helping businesses offer superior customer service, ...",true,null,0,2,75,"2-way radio","Others","Motorola",4,900501,true,6,0,1199983767444,0]},{"data":[413704,"Cobra PR270","http://a367.yahoofs.com/shopping/3105984/simg_t_ts5220144fe4ec8e891b64acca2985548a2593378jpg85?rm_____DOBZcytPX","85x64","http://a367.yahoofs.com/shopping/3105984/simg_t_ms5220144fe4ec8e891b64acca2985548a2593378jpg175?rm_____DyVFAz8Nu","175x131","28.95","37.97",58,77,[0,1,1,3161],"34.99",11115273,3,"Budget 2-way radio","Average feature set","/s/Cobra-PR270-2-way-Radios-review-manual/id/11115ci273/t/1-2/",null,"2.9","","1995320842","Marketing description is not available.",true,null,0,0,75,"2-way radio","Others","Cobra",3,900501,true,6,0,1202366350623,0]},{"data":[413704,"Cobra microTALK LI6700-2WXVP","http://a367.yahoofs.com/shopping/3105984/simg_t_ts5220139273a79271f23477fa71f011c590ace9fjpg85?rm_____Dvw46rJ35","85x64","http://a367.yahoofs.com/shopping/3105984/simg_t_ms5220139273a79271f23477fa71f011c590ace9fjpg175?rm_____DguX2lmCH","175x131","44.99","79.95",100,97,[0,2,1,3151],"54.79",11115274,3,"Budget 2-way radio","Better than average features","/s/Cobra-LI6700-2WXVP-2-way-Radios-review-manual/id/11115ci274/t/1-2/",null,"2.9","","1995320834","The 6700 comes in an ultra-compact GMRS/FRS two-way radio value pack with a range of up to 22 miles. The radios include rechargeable high capacity lithium ion batteries and a two-port desktop charger. ...",true,null,0,0,75,"2-way radio","Others","Cobra",5,900501,true,6,0,1202366350623,0]},{"data":[413704,"Cobra MRHH125","http://a367.yahoofs.com/shopping/3106011/simg_t_ts52201417c244d2430614ff39eb05861f78335d7jpg85?rm_____Dk5SbF_W3","85x64","http://a367.yahoofs.com/shopping/3106011/simg_t_ms52201417c244d2430614ff39eb05861f78335d7jpg175?rm_____DsChicTAs","175x131","50.69","68.29",108,61,[1,0,0,3170],"59.97",11115350,3,"Mid-range 2-way radio","Below average feature set","/s/Cobra-MRHH125-2-way-Radios-review-manual/id/11115bh350/t/1-2/",null,"3.5","","1995320839","Marketing description is not available.",true,null,0,2,75,"2-way radio","Others","Cobra",6,900501,true,6,0,1202366438325,0]},{"data":[413704,"Cobra PR 190 VP","http://a367.yahoofs.com/shopping/3105984/simg_t_ts5220143921d94e834224391a112c5d41b98482ejpg85?rm_____D_UbZiq.U","85x64","http://a367.yahoofs.com/shopping/3105984/simg_t_ms5220143921d94e834224391a112c5d41b98482ejpg175?rm_____DlUSuByG1","175x131","18.00","39.95",41,91,[0,1,1,3154],"28.98",11238275,3,"Budget 2-way radio","Average feature set","/s/Cobra-PR-190-VP-2-way-Radios-review-manual/id/11238ci275/t/1-2/",null,"2.9","","1995320840","Marketing description is not available.",true,null,0,0,75,"2-way radio","Others","Cobra",2,900501,true,6,0,1202812623738,0]},{"data":[413704,"Cobra microTALK LI5600-2DXVP","http://a367.yahoofs.com/shopping/3105984/simg_t_ts522013793d42fced60b490db209d277e2d8e5e1jpg85?rm_____D4DSBcscQ","85x64","http://a367.yahoofs.com/shopping/3105984/simg_t_ms522013793d42fced60b490db209d277e2d8e5e1jpg175?rm_____DE_NMXV37","175x131","51.49","69.95",109,90,[0,2,1,3155],"60.72",11238276,1,"Budget 2-way radio","Better than average features","/s/Cobra-LI5600-2DXVP-2-way-Radios-review-manual/id/11238ci276/t/1-2/",null,"3.8","","1995320831","The 5600 comes in an ultra-compact GMRS/FRS two-way radio value pack with a range of up to 22 miles. The radios include rechargeable high capacity lithium ion batteries and a two-port desktop charger. ...",true,null,0,10,75,"2-way radio","Others","Cobra",2,900501,true,6,0,1202812623770,0]},{"data":[280293,"Motorola RDU2020","http://a367.yahoofs.com/shopping/3110946/simg_t_ts54970433724ee03b91847389674fa0b5123280ejpg85?rm_____D2zi0JQqn","85x64","http://a367.yahoofs.com/shopping/3110946/simg_t_ms54970433724ee03b91847389674fa0b5123280ejpg175?rm_____DB6dnu3B4","175x131","196.75","219.99",231,80,[2,1,1,3160],"209.00",12012005,3,"High-end 2-way radio","Average feature set","/s/Motorola-RDU2020-2-way-Radios-review-manual/id/12012ag005/t/1-2/",null,"2.9","","1995568851","Marketing description is not available.",true,null,0,0,75,"2-way radio","Others","Motorola",4,900501,true,6,0,1204114044409,0]},{"data":[280293,"Motorola RDV2020","http://a367.yahoofs.com/shopping/3111786/simg_t_ts5521204a538ef24347d48a4b573de6d99cccb56jpg85?rm_____DGQcMHVkm","85x64","http://a367.yahoofs.com/shopping/3111786/simg_t_ms5521204a538ef24347d48a4b573de6d99cccb56jpg175?rm_____DwMbxClKE","175x131","183.18","219.99",220,155,[2,0,2,3106],"189.00",12012068,3,"High-end 2-way radio","Below average feature set","/s/Motorola-RDV2020-2-way-Radios-review-manual/id/12012ci068/t/1-2/",null,"1.0","","1995599827","The RDV2020 on-site two-way radio operates on 27 VHF business-exclusive frequencies. Enhanced audio quality, a rugged design and versatile customer programming software make this radio be an ...",true,null,0,1,75,"2-way radio","Others","Motorola",3,900501,true,6,0,1204114716755,0]},{"data":[413704,"Cobra microTALK LI7200-2WXVP","http://a367.yahoofs.com/shopping/3105984/simg_t_ts5220140860733f573a4456cba2ab6d9d36db4b7jpg85?rm_____DoAgwdyhu","85x64","http://a367.yahoofs.com/shopping/3105984/simg_t_ms5220140860733f573a4456cba2ab6d9d36db4b7jpg175?rm_____DgpZLRYM3","175x131","49.98","89.95",123,120,[0,2,1,3140],"69.96",12025817,3,"Budget 2-way radio","Better than average features","/s/Cobra-LI7200-2WXVP-2-way-Radios-review-manual/id/12025ag817/t/1-2/",null,"4.0","","1995320836","Marketing description is not available.",true,null,0,9,75,"2-way radio","Others","Cobra",2,900501,true,6,0,1204126162176,0]},{"data":[470865,"Uniden GMR1838-2CK","http://a367.yahoofs.com/shopping/3113062/simg_t_ts550786377ed43f51d884b1cbf9840cf5ef6f141jpg85?rm_____DQ4PKJjkV","85x64","http://a367.yahoofs.com/shopping/3113062/simg_t_ms550786377ed43f51d884b1cbf9840cf5ef6f141jpg175?rm_____DShC.BEBk","175x131","34.45","59.00",73,90,[0,1,1,3155],"41.05",13435039,1,"Budget 2-way radio","Average feature set","/s/Uniden-GMR1838-2CK-2-way-Radios-review-manual/id/13435bh039/t/1-2/",null,"3.55","","1995649596","Marketing description is not available.",true,null,0,45,75,"2-way radio","Others","Uniden",4,900501,true,6,0,1206956361617,0]},{"data":[280293,"Motorola RDV5100","http://a367.yahoofs.com/shopping/3126373/simg_t_ts5835740ba5047c629a94aebadcd78dec977c6d0jpg85?rm_____D8tGMCHGS","85x64","http://a367.yahoofs.com/shopping/3126373/simg_t_ms5835740ba5047c629a94aebadcd78dec977c6d0jpg175?rm_____DWLzKg7xM","175x131","259.00","298.00",257,133,[2,2,1,3133],"269.00",13906705,3,"High-end 2-way radio","Better than average features","/s/Motorola-RDV5100-2-way-Radios-review-manual/id/13906ag705/t/1-2/",null,"2.9","","1995898759","The Motorola RDX Series provides your business with a competitive communications edge, enhancing employee efficiency and overall profitability. Affordable and easy to use, the RDX Series helps keep ...",true,null,0,0,75,"2-way radio","Others","Motorola",3,900501,true,6,0,1207561550702,0]},{"data":[280293,"Motorola RDU4160D","http://a367.yahoofs.com/shopping/3113748/simg_t_ts5627480ec2b360584c84782938a290dc95eae05jpg85?rm_____DpwX29Ahw","85x64","http://a367.yahoofs.com/shopping/3113748/simg_t_ms5627480ec2b360584c84782938a290dc95eae05jpg175?rm_____DmYFc0CPS","175x131","299.00","330.00",272,59,[2,2,0,3173],"309.00",15036419,3,"High-end 2-way radio","Better than average features","/s/Motorola-RDU4160D-2-way-Radios-review-manual/id/15036ag419/t/1-2/",null,"5.0","","1995643566","The Motorola RDX Series provides your business with a competitive communications edge, enhancing employee efficiency and overall profitability. Affordable and easy to use, the RDX Series helps keep ...",true,null,0,1,75,"2-way radio","Others","Motorola",3,900501,true,6,0,1208764584848,0]},{"data":[280293,"Motorola SX600R","http://a367.yahoofs.com/shopping/3143709/simg_t_ts532950322b64c364c594bd2b9f67e920196f3bfjpg85?rm_____Df148WMiC","85x64","http://a367.yahoofs.com/shopping/3143709/simg_t_ms532950322b64c364c594bd2b9f67e920196f3bfjpg175?rm_____D6Uk26.G0","175x131","36.57","58.00",74,51,[0,2,0,3185],"41.59",19050732,0,"Budget 2-way radio","Better than average features","/s/Motorola-SX600R-2-way-Radios-review-manual/id/19050bh732/t/1-2/",null,"4.2","","R435677","Marketing description is not available.",true,null,0,60,75,"2-way radio","Others","Motorola",7,900501,true,6,0,1213093172782,0]},{"data":[470865,"Uniden GMR2889-2CK","http://a367.yahoofs.com/shopping/3113763/simg_t_ts5652133f346c013d720425da47fbbd318e06169jpg85?rm_____Dukp43C.n","85x64","http://a367.yahoofs.com/shopping/3113763/simg_t_ms5652133f346c013d720425da47fbbd318e06169jpg175?rm_____DVlEY0yK4","175x131","59.74","74.99",112,102,[0,2,1,3149],"62.49",19050734,3,"Budget 2-way radio","Better than average features","/s/Uniden-GMR2889-2CK-2-way-Radios-review-manual/id/19050bh734/t/1-2/",null,"3.2","","1995678559","This lightweight, palm-sized, radio is a state-of-the-art device, equipped with many valuable features. Use it at sporting events, to stay in contact with family and friends, hiking, skiing, outdoors, ...",true,null,0,5,75,"2-way radio","Others","Uniden",4,900501,true,6,0,1213093172782,0]},{"data":[470865,"Uniden GMR1235-2","http://a367.yahoofs.com/shopping/3113063/simg_t_ts553303964c9433032284ec697be377aa137844djpg85?rm_____DVFmQuL_w","85x64","http://a367.yahoofs.com/shopping/3113063/simg_t_ms553303964c9433032284ec697be377aa137844djpg175?rm_____DSUvwf.HV","175x131","21.83","49.00",38,81,[0,1,1,3159],"28.00",19390030,1,"Budget 2-way radio","Average feature set","/s/Uniden-GMR1235-2-2-way-Radios-review-manual/id/19390bh030/t/1-2/",null,"3.6","","1995649614","Marketing description is not available.",true,null,0,25,75,"2-way radio","Others","Uniden",6,900501,true,6,0,1214203996515,0]},{"data":[280293,"Motorola EM1000R","http://a367.yahoofs.com/shopping/3131494/simg_t_ts5329499d5d65e6055354ec0a861d990268c6a28jpg85?rm_____DVqYEDKrw","85x64","http://a367.yahoofs.com/shopping/3131494/simg_t_ms5329499d5d65e6055354ec0a861d990268c6a28jpg175?rm_____DTSToQp31","175x131","44.38","69.00",106,68,[0,2,1,3166],"58.64",23108338,1,"Budget 2-way radio","Better than average features","/s/Motorola-EM1000R-2-way-Radios-review-manual/id/23108bh338/t/1-2/",null,"3.9","","1996004759","The Motorola Talkabout EM1000R is the ideal emergency preparedness communication tool for outdoor enthusiasts and active families. With a range of up to 20 miles, an emergency alert feature and ...",true,null,0,115,75,"2-way radio","Others","Motorola",8,900501,true,6,0,1228127297622,0]},{"data":[468204,"Kenwood Protalk TK-2200LV8P","http://a367.yahoofs.com/shopping/3133966/simg_t_ts59038911fdb7bf144ae465481a3aa19fd289640jpg85?rm_____D13GtZDgw","85x64","http://a367.yahoofs.com/shopping/3133966/simg_t_ms59038911fdb7bf144ae465481a3aa19fd289640jpg175?rm_____DwGmkStUc","175x131","171.71","179.99",213,142,[2,0,2,3126],"175.85",23138924,3,"High-end 2-way radio","Below average feature set","/s/Kenwood-TK-2200LV8P-2-way-Radios-review-manual/id/23138ag924/t/1-2/",null,"2.9","","1996049697","Marketing description is not available.",true,null,0,0,75,"2-way radio","Others","Kenwood",2,900501,true,6,0,1230536678707,0]},{"data":[468204,"Kenwood Protalk TK-2200LV2P","http://a367.yahoofs.com/shopping/3133966/simg_t_ts59038901fdb7bf144ae465481a3aa19fd289640jpg85?rm_____Dr_ubYsPQ","85x64","http://a367.yahoofs.com/shopping/3133966/simg_t_ms59038901fdb7bf144ae465481a3aa19fd289640jpg175?rm_____DbymdIgq2","175x131","158.10","175.59",207,116,[1,2,1,3142],"166.84",23138925,3,"Mid-range 2-way radio","Better than average features","/s/Kenwood-TK-2200LV2P-2-way-Radios-review-manual/id/23138ag925/t/1-2/",null,"2.9","","1996049695","PRODUCT FEATURES:VHF 2 Watts2 channelUser programmable frequenciesWireless cloning modeLoud 500 mW audioProgrammable QT per channelVOX (voice-activated transmit) with audio accessoryChannel scanSuper ...",true,null,0,0,75,"2-way radio","Others","Kenwood",2,900501,true,6,0,1230536678707,0]},{"data":[413704,"Cobra CXT90","http://a367.yahoofs.com/shopping/3143021/simg_t_ts6213082468afc9f1af1402e9bb0166d92b32c51jpg85?rm_____DLnGhcHEG","85x64","http://a367.yahoofs.com/shopping/3143022/simg_t_ms6213082468afc9f1af1402e9bb0166d92b32c51jpg175?rm_____DbiyyzkO.","175x131","36.59","49.99",78,90,[0,2,1,3155],"43.48",23288538,3,"Budget 2-way radio","Better than average features","/s/Cobra-CXT90-2-way-Radios-review-manual/id/23288bh538/t/1-2/",null,"3.25","","1996145053","Marketing description is not available.",true,null,0,4,75,"2-way radio","Others","Cobra",4,900501,true,6,0,1237193239218,0]},{"data":[413704,"Cobra CXR700","http://a367.yahoofs.com/shopping/3143021/simg_t_ts6213077da5edacb8dac4e3b9830131c782ed9aajpg85?rm_____Dma4EJwzp","85x64","http://a367.yahoofs.com/shopping/3143021/simg_t_ms6213077da5edacb8dac4e3b9830131c782ed9aajpg175?rm_____DaTp8NEF4","175x131","53.98","67.54",99,72,[0,2,1,3164],"54.49",23288539,3,"Budget 2-way radio","Better than average features","/s/Cobra-CXR700-2-way-Radios-review-manual/id/23288bh539/t/1-2/",null,"3.5","","1996145051","Marketing description is not available.",true,null,0,4,75,"2-way radio","Others","Cobra",3,900501,true,6,0,1237193239234,0]},{"data":[413704,"Cobra CXT85","http://a367.yahoofs.com/shopping/3143161/simg_t_ts6213081f0e7c9f75f8b4aa8b9e89ac26bc67776jpg85?rm_____D2XlAl2dU","85x64","http://a367.yahoofs.com/shopping/3143161/simg_t_ms6213081f0e7c9f75f8b4aa8b9e89ac26bc67776jpg175?rm_____DkJxFdkRA","175x131","25.95","39.99",46,61,[0,1,1,3169],"30.49",23306002,3,"Budget 2-way radio","Average feature set","/s/Cobra-CXT85-2-way-Radios-review-manual/id/23306ag002/t/1-2/",null,"3.4","","1996158390","The CXT85 comes in a GMRS/FRS two-way radio value pack with a range of up to 16 miles. The radios include rechargeable batteries and a "Y" wall charger. Roger beep, a battery low indicator, ...",true,null,0,5,75,"2-way radio","Others","Cobra",0,900501,true,6,0,1238394371064,0]},{"data":[413704,"Cobra CXR900","http://a367.yahoofs.com/shopping/3143161/simg_t_ts6213079ea6852d9ee4140d08144f55eebebfe71jpg85?rm_____DSKr.4XWt","85x64","http://a367.yahoofs.com/shopping/3143161/simg_t_ms6213079ea6852d9ee4140d08144f55eebebfe71jpg175?rm_____DbevGpwVx","175x131","59.88","89.99",122,87,[1,0,1,3156],"68.90",23306003,3,"Mid-range 2-way radio","Below average feature set","/s/Cobra-CXR900-2-way-Radios-review-manual/id/23306ag003/t/1-2/",null,"3.65","","1996158388","This ultra-compact GMRS/FRS two-way radio value pack offers radios with a range of up to 30 miles. The CXR900 offers the maximum power allowed by law and the highest capacity lithium ion batteries in ...",true,null,0,9,75,"2-way radio","Others","Cobra",6,900501,true,6,0,1238394371064,0]},{"data":[413704,"Cobra CXR800","http://a367.yahoofs.com/shopping/3143161/simg_t_ts6213078b2caec069cf84d2685a618473c2cb40djpg85?rm_____DKUjT69MM","85x64","http://a367.yahoofs.com/shopping/3143161/simg_t_ms6213078b2caec069cf84d2685a618473c2cb40djpg175?rm_____D39ZvIkNq","175x131","60.89","79.99",121,121,[1,0,1,3139],"68.58",23306004,3,"Mid-range 2-way radio","Below average feature set","/s/Cobra-CXR800-2-way-Radios-review-manual/id/23306ag004/t/1-2/",null,"5.0","","1996158385","Marketing description is not available.",true,null,0,1,75,"2-way radio","Others","Cobra",4,900501,true,6,0,1238394371064,0]},{"data":[413704,"Cobra CXT400","http://a367.yahoofs.com/shopping/3143161/simg_t_ts6213080514e8f7dd9484522a3499d7c216ea699jpg85?rm_____DT4esJLo3","85x64","http://a367.yahoofs.com/shopping/3143161/simg_t_ms6213080514e8f7dd9484522a3499d7c216ea699jpg175?rm_____DJaA8iiLi","175x131","46.02","59.99",95,92,[0,2,1,3154],"51.93",23306005,3,"Budget 2-way radio","Better than average features","/s/Cobra-CXT400-2-way-Radios-review-manual/id/23306ag005/t/1-2/",null,"2.9","","1996153875","Marketing description is not available.",true,null,0,0,75,"2-way radio","Others","Cobra",4,900501,true,6,0,1238394371080,0]},{"data":[280293,"Motorola T9650RCAMO","http://a367.yahoofs.com/shopping/3143709/simg_t_ts5329505d62861f80d6742c69ad2b28f79b752d0jpg85?rm_____Dj2wSDtho","85x64","http://a367.yahoofs.com/shopping/3143709/simg_t_ms5329505d62861f80d6742c69ad2b28f79b752d0jpg175?rm_____DIN_MUvTw","175x131","109.99","119.99",167,123,[1,1,1,3138],"109.99",23343863,3,"Mid-range 2-way radio","Average feature set","/s/Motorola-T9650RCAMO-2-way-Radios-review-manual/id/23343ci863/t/1-2/",null,"5.0","","1996205666","Marketing description is not available.",true,null,0,1,75,"2-way radio","Others","Motorola",3,900501,true,6,0,28800000,0]},{"data":[280293,"Motorola T9680RSAME","http://a367.yahoofs.com/shopping/3143709/simg_t_ts532950630531165bcb0415ab0c0d6fda69c108cjpg85?rm_____Dcvdrojvu","85x64","http://a367.yahoofs.com/shopping/3143709/simg_t_ms532950630531165bcb0415ab0c0d6fda69c108cjpg175?rm_____D5_PNJDNB","175x131","79.99","89.99",143,57,[1,1,0,3176],"84.99",23343864,0,"Mid-range 2-way radio","Average feature set","/s/Motorola-T9680RSAME-2-way-Radios-review-manual/id/23343ci864/t/1-2/",null,"4.2","","1996205668","Marketing description is not available.",true,null,0,18,75,"2-way radio","Others","Motorola",2,900501,true,6,0,28800000,0]},{"data":[280293,"Motorola FV300R","http://a367.yahoofs.com/shopping/3143709/simg_t_ts5329501b78e822285a643ccb3cbad471a7993c4jpg85?rm_____DLz8Zj8VJ","85x64","http://a367.yahoofs.com/shopping/3143709/simg_t_ms5329501b78e822285a643ccb3cbad471a7993c4jpg175?rm_____Dd3aVlb3n","175x131","29.95","29.99",44,100,[0,0,1,3150],"29.99",23350734,3,"Budget 2-way radio","Below average feature set","/s/Motorola-FV300R-2-way-Radios-review-manual/id/23350bh734/t/1-2/",null,"3.0","","1996205662","Marketing description is not available.",true,null,0,1,75,"2-way radio","Others","Motorola",3,900501,true,6,0,28800000,0]},{"data":[280293,"Motorola Talkabout MR350R","http://a367.yahoofs.com/shopping/3143192/simg_t_ts63544715fedaf1a4983421c9182eaa037e29baajpg85?rm_____DZL0m.fWG","85x64","http://a367.yahoofs.com/shopping/3143192/simg_t_ms63544715fedaf1a4983421c9182eaa037e29baajpg175?rm_____DeCDDs9CY","175x131","79.99","79.99",137,132,[1,0,1,3134],"79.99",23445089,3,"Mid-range 2-way radio","Below average feature set","/s/Motorola-MR350R-2-way-Radios-review-manual/id/23445dj089/t/1-2/",null,"4.0","","R431791","Marketing description is not available.",true,null,0,5,75,"2-way radio","Others","Motorola",2,900501,true,6,0,28800000,0]},{"data":[280293,"Motorola MJ270R","http://a367.yahoofs.com/shopping/3143192/simg_t_ts63544703e1f53ddcaa74e90802dbee8302b117fjpg85?rm_____DmAR1vfAA","85x64","http://a367.yahoofs.com/shopping/3143192/simg_t_ms63544703e1f53ddcaa74e90802dbee8302b117fjpg175?rm_____DMZhT9EdD","175x131","54.99","69.99",123,78,[1,1,1,3161],"69.50",23445094,3,"Mid-range 2-way radio","Average feature set","/s/Motorola-MJ270R-2-way-Radios-review-manual/id/23445dj094/t/1-2/",null,"2.9","","R431792","Marketing description is not available.",true,null,0,0,75,"2-way radio","Others","Motorola",4,900501,true,6,0,28800000,0]},{"data":[280293,"Motorola Talkabout MH230R","http://a367.yahoofs.com/shopping/3143192/simg_t_ts6354469c3690c6e6a78431d9a317f3b67a53754jpg85?rm_____DnrHV7IW4","85x64","http://a367.yahoofs.com/shopping/3143192/simg_t_ms6354469c3690c6e6a78431d9a317f3b67a53754jpg175?rm_____Dgtcp__U2","175x131","44.99","59.99",108,83,[1,1,1,3158],"59.99",23445098,3,"Mid-range 2-way radio","Average feature set","/s/Motorola-MH230R-2-way-Radios-review-manual/id/23445dj098/t/1-2/",null,"4.75","","R431793","Marketing description is not available.",true,null,0,4,75,"2-way radio","Others","Motorola",4,900501,true,6,0,28800000,0]}] var jsPriceMarkers = []; // [Bug 3932] Support price zooming in PA map var gGreyDivWidth = 8; // dimension of the grey dot var gGreyDivHeight = 8; // the following are moved from navCat.js to here to use the dimensions in CategoryDataAccess.VALUEMAP_PA_COORDS // the offset of the absolute position to the value map grid's ancestor positioning element var gMapLeftOffset = parseInt('47'); var gMapTopOffset = parseInt('23'); var gMapGridWidth = parseInt('238'); var gMapGridHeight = parseInt('238'); var gRedDivWidth = parseInt('22'); // dimension of the bubble var gMarkerHeightOffset = parseInt('82'); // the marker height for the back end to calculate the shifting to center the bubble var gRedDivHeight = Math.ceil( gMarkerHeightOffset/2 ); // the height of the red bubble // the return coordinate of the point is adjusted based on the bubble's dimension, so the grey dot needs adjust back to show in the correct location var gGreyDivLeftOffset = Math.ceil( (gRedDivWidth - gGreyDivWidth)/2 ); // Math.floor((gRedDivWidth - gGreyDivWidth)/2 ); var gGreyDivTopOffset = (gRedDivHeight - gGreyDivHeight ); // (gRedDivHeight - Math.ceil(gGreyDivHeight/2 )) var gShadowHeight = 12; var gShadowLeftOffset = Math.ceil( gRedDivWidth/2 ); var gShadowTopOffset = gRedDivHeight - gShadowHeight;