/** * @object: jsPriceVOList * @desc: list of price ranges */ var jsPriceVOList = { "priceList": [ {"title":'Budget $19 - $97', "isSelected":false, "productCount":15 } , {"title":'Mid-range $151 - $427', "isSelected":false, "productCount":32 } , {"title":'High-end $412 - $879', "isSelected":false, "productCount":12 } ], /** * @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":272617, "brandName":'Apple', "isSelected":false, "isTopBrand":true, "productCount":4, "bId":"b"+0 } , { "vendorID":281173, "brandName":'LG', "isSelected":false, "isTopBrand":true, "productCount":2, "bId":"b"+1 } , { "vendorID":280293, "brandName":'Motorola', "isSelected":false, "isTopBrand":true, "productCount":13, "bId":"b"+2 } , { "vendorID":280772, "brandName":'Nokia', "isSelected":false, "isTopBrand":true, "productCount":15, "bId":"b"+3 } , { "vendorID":281112, "brandName":'Sony Ericsson', "isSelected":false, "isTopBrand":true, "productCount":4, "bId":"b"+4 } , { "vendorID":201348, "brandName":'Samsung', "isSelected":false, "isTopBrand":true, "productCount":7, "bId":"b"+5 } , { "vendorID":281283, "brandName":'RIM', "isSelected":false, "isTopBrand":false, "productCount":3, "bId":"b"+6 } , { "vendorID":200659, "brandName":'HP', "isSelected":false, "isTopBrand":false, "productCount":2, "bId":"b"+7 } , { "vendorID":1002197, "brandName":'Pantech', "isSelected":false, "isTopBrand":false, "productCount":2, "bId":"b"+8 } , { "vendorID":273118, "brandName":'Palm', "isSelected":false, "isTopBrand":false, "productCount":2, "bId":"b"+9 } , { "vendorID":529658, "brandName":'Pharos', "isSelected":false, "isTopBrand":false, "productCount":2, "bId":"b"+10 } , { "vendorID":562269, "brandName":'T-Mobile', "isSelected":false, "isTopBrand":false, "productCount":1, "bId":"b"+11 } , { "vendorID":1075662, "brandName":'Asus', "isSelected":false, "isTopBrand":false, "productCount":1, "bId":"b"+12 } , { "vendorID":489470, "brandName":'HTC', "isSelected":false, "isTopBrand":false, "productCount":1, "bId":"b"+13 } ], "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 = "Built in Memory - 10 MB + SMS, MMS + 1.3 Mpixel Built in Camera + Up to 210 Min Talk Time + Voice Recorder + Speakerphone + Internet Browser+?Built in Memory - 50 MB + SMS, MMS + 2.0 Mpixel Built in Camera + 4x Digital Zoom + Up to 325 Min Talk Time + FM Radio + Java Applications + speakerphone + Internet Browser+?Built in Memory - 100 MB + SMS, MMS + 3.2 Mpixel Built in Camera + Camera Flash + Up to 360 Min Talk Time + IMAP, POP3 email formats supported+?"; 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 + " cell phones and have grouped them into the following ranges based on price and features. Click Select Preferences to proceed.
Budget

$19 - $97
• Built in Memory - 10 MB
• SMS, MMS
• 1.3 Mpixel Built in Camera
• Up to 210 Min Talk Time
• Voice Recorder
• Speakerphone
• Internet Browser
Mid-range

$151 - $427
• Built in Memory - 50 MB
• SMS, MMS
• 2.0 Mpixel Built in Camera
• 4x Digital Zoom
• Up to 325 Min Talk Time
• FM Radio
• Java Applications
• speakerphone
• Internet Browser
High-end

$412 - $879
• Built in Memory - 100 MB
• SMS, MMS
• 3.2 Mpixel Built in Camera
• Camera Flash
• Up to 360 Min Talk Time
• IMAP, POP3 email formats supported
"; 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 cell phones and have grouped them into the following ranges based on price and features.
Budget

$19 - $97
• Built in Memory - 10 MB
• SMS, MMS
• 1.3 Mpixel Built in Camera
• Up to 210 Min Talk Time
• Voice Recorder
• Speakerphone
• Internet Browser
Mid-range

$151 - $427
• Built in Memory - 50 MB
• SMS, MMS
• 2.0 Mpixel Built in Camera
• 4x Digital Zoom
• Up to 325 Min Talk Time
• FM Radio
• Java Applications
• speakerphone
• Internet Browser
High-end

$412 - $879
• Built in Memory - 100 MB
• SMS, MMS
• 3.2 Mpixel Built in Camera
• Camera Flash
• Up to 360 Min Talk Time
• IMAP, POP3 email formats supported
"; } function getVendorList() { return null; } var gInitialRawProductsArr = [{"data":[280293,"Motorola SLVR L6","/d/prodimg?mediatype=0&id=0B0EBB5C-8CEB-4973-97B5-CE93E9C7512D","85x64","/d/prodimg?mediatype=1&id=0373DDE3-DDD8-4914-8D52-F202EB35588C","200x150","99.00","99.99",110,149,[0,2,2,3115],"99.00",280350,1,"Budget cell phone","Better than average features","/s/Motorola-SLVR-L6-Cell-Phones-review-manual/id/280bh350/t/1-2/",null,"3.4","Mobile Phone • Candy bar • Talk Time Up to 350 min • GSM - Tri-Band","1994405878","Motorola L6 is uninhibited fun packed in a super slim and chic design. Capture and share digital photos and video clips, send text messages that reflect your creativity or explore the wireless world ...",true,null,26,160,5,"cell phone","Cell_Phones","Motorola",3,900501,true,4,0,1140595200000,0]},{"data":[280293,"Motorola RAZR V3C","/d/prodimg?mediatype=0&id=B351806E-3819-48C2-A09D-BF61E3E8C4F9","85x64","/d/prodimg?mediatype=1&id=D7191A4E-4C26-4D18-B6D9-365C1BF6377A","200x150","199.00","400.00",149,159,[1,0,2,3098],"215.99",280357,1,"Mid-range cell phone","Below average feature set","/s/Motorola-RAZR-V3C-Cell-Phones-review-manual/id/280ci357/t/1-2/",null,"3.45","Mobile Phone • Folder type phone • Talk Time Up to 188 min • CDMA2000 1X • 1.3 Megapixel Camera Resolution","R203645","The stunningly sophisticated Motorola RAZR is now ready to be experienced by users of CDMA technology. Like the original, the RAZR V3c touts excellence in design and a razor-thin form factor, but ...",true,null,20,1058,5,"cell phone","Cell_Phones","Motorola",3,900501,true,4,0,1131523200000,0]},{"data":[280293,"Motorola V195","/d/prodimg?mediatype=0&id=9C68AAFE-4836-42DC-A752-25E0A47A36E5","85x64","/d/prodimg?mediatype=1&id=612A7A09-875A-4DC8-B87B-3CA27E3A75B5","200x150","50.00","60.00",82,143,[0,1,2,3125],"55.00",280366,1,"Budget cell phone","Average feature set","/s/Motorola-V195-Cell-Phones-review-manual/id/280ci366/t/1-2/",null,"3.8","Mobile Phone • Folder type phone • Talk Time Up to 612 min • GSM","1994082140","The Motorola V195 strikes the perfect balance between style, power, fun and affordability. This quad-band mobile is your ideal companion for communications around the globe, offering an unbelievable ...",true,null,3,45,5,"cell phone","Cell_Phones","Motorola",2,900501,true,4,0,1144998000000,0]},{"data":[201348,"Samsung SPH-VI660","http://a367.yahoofs.com/shopping/3083521/simg_t_ts2510352b56c9dc790af46719b0fd4c6c5fbc8b7jpg85?rm_____D5VRjIffZ","85x64","http://a367.yahoofs.com/shopping/3083521/simg_t_ms2510352b56c9dc790af46719b0fd4c6c5fbc8b7jpg175?rm_____DGeThbbAB","175x131","19.76","22.67",38,143,[0,0,2,3125],"21.22",280614,1,"Budget cell phone","Below average feature set","/s/Samsung-SPH-VI660-Cell-Phones-review-manual/id/280ag614/t/1-2/",null,"3.0","Mobile Phone • Folder type phone • Talk Time Up to 336 min • CDMA2000 1X / AMPS","1991678287","Discover style and sophistication with Sprint PCS Vision Phone VI660 by Samsung, the lightweight, compact, and clamshell design with full-color screen that weighs only 3.54 ounces.Large, graphic, ...",true,null,0,20,5,"cell phone","Cell_Phones","Samsung",2,900501,true,4,0,1121238000000,0]},{"data":[280772,"Nokia 6102","/d/prodimg?mediatype=0&id=816600AF-E785-4537-B36F-028A8FDC613C","85x64","/d/prodimg?mediatype=1&id=BC561421-29B6-4E26-A360-73FEF72A9384","200x150","55.00","59.99",84,129,[0,2,1,3135],"57.50",280828,1,"Budget cell phone","Better than average features","/s/Nokia-6102-Cell-Phones-review-manual/id/280bh828/t/1-2/",null,"3.65","Mobile Phone • Folder type phone • Talk Time Up to 240 min • GSM","1993917104","The Nokia 6102i phone carries on the same striking design found on the Nokia 6102 phone. The addition of Bluetooth technology to this popular phone platform opens up a myriad of options for owners to ...",true,null,5,114,5,"cell phone","Cell_Phones","Nokia",0,900501,true,4,0,1138780800000,0]},{"data":[201348,"Samsung SGH-T209","/d/prodimg?mediatype=0&id=1BFC87CA-866A-4458-B76B-FA5FA08E7ACD","85x64","/d/prodimg?mediatype=1&id=79963C1C-846A-44E8-BEBB-D88903292A6B","200x150","69.15","94.94",101,174,[0,0,2,3073],"82.04",390352,2,"Budget cell phone","Below average feature set","/s/Samsung-SGH-T209-Cell-Phones-review-manual/id/390ci352/t/1-2/",null,"2.9","Mobile Phone • Folder type phone • Talk Time Up to 300 min • GSM","1994058207","The SGH-t209 has everything most people need to stay well connected. MMS-Multimedia Messaging feature lets you send and receive text messages with photos as well as sound bites. With EMS (Enhanced ...",true,null,5,23,5,"cell phone","Cell_Phones","Samsung",2,900501,true,4,0,1149231600000,0]},{"data":[281283,"RIM Pearl 8100","/d/prodimg?mediatype=0&id=58A8964D-1033-4F07-96F2-F3DF8E87159F","85x64","/d/prodimg?mediatype=1&id=6E74A561-F2F8-4BB4-9D39-A71D94EC3CE5","200x150","119.99","144.95",123,162,[0,1,2,3094],"132.47",524930,1,"Budget cell phone","Average feature set","/s/RIM-Pearl-8100-Cell-Phones-review-manual/id/524bh930/t/1-2/",null,"3.7","Smartphone • Candy bar • Talk Time 210 min • GSM • 1.3 Megapixel Camera Resolution","1994279145","The BlackBerry Pearl 8100 smartphone is one of the world's smallest smartphones and packs all of the power of BlackBerry. It comes complete with digital camera, multimedia capabilities and expandable ...",true,null,23,738,5,"cell phone","Cell_Phones","RIM",2,900501,true,4,0,1147849200000,0]},{"data":[280293,"Motorola RAZR V3","/d/prodimg?mediatype=0&id=95DEFB5F-3C44-4B26-AB7E-F215905DE94E","85x64","/d/prodimg?mediatype=1&id=9EFA0472-53D6-48DF-897C-377461511961","200x150","78.99","89.99",102,98,[0,2,1,3151],"84.84",568981,1,"Budget cell phone","Better than average features","/s/Motorola-RAZR-V3-Cell-Phones-review-manual/id/568dj981/t/1-2/",null,"3.25","Mobile Phone • Folder type phone • Talk Time Up to 430 min • GSM • 0.3 Megapixel Camera Resolution","1994477128","At only 13.9 mm thin, 53 mm wide (the width of a credit card) and 98 mm long, the Motorola RAZR V3 is a slim phone rich in functions, performance excellence and design innovation. It provides the user ...",true,null,50,2172,5,"cell phone","Cell_Phones","Motorola",2,900501,true,4,1,1099987200000,0]},{"data":[562269,"T-Mobile Dash","/d/prodimg?mediatype=0&id=C8725600-821B-4674-844D-845F99C9743A","85x64","/d/prodimg?mediatype=1&id=EF9D420B-9EB7-427E-A987-EF81FE34AB0D","200x150","248.99","259.00",160,196,[1,0,2,3038],"249.99",583295,1,"Mid-range cell phone","Below average feature set","/s/T-Mobile-Dash-Cell-Phones-review-manual/id/583dj295/t/1-2/",null,"3.8","Smartphone • Candy bar • Talk Time Up to 300 min • GSM • 1.3 Megapixel Camera Resolution","1994390558","T-Mobile Dash is a sleek Windows Mobile Smartphone to keep you connected and is comfortable to hold. Connect with all your e-mail easily. View and share photos, videos, and attachments or browse the ...",true,null,0,21,5,"cell phone","Cell_Phones","T-Mobile",3,900501,true,4,0,1178607600000,0]},{"data":[280293,"Motorola RIZR Z3","/d/prodimg?mediatype=0&id=70FF78DB-16A5-4C2B-B8BD-427AB6C2BB05","85x64","/d/prodimg?mediatype=1&id=C71952EF-505E-42DE-8C77-41F7C2A467F5","200x150","109.95","195.95",130,150,[1,0,2,3114],"152.95",918402,1,"Mid-range cell phone","Below average feature set","/s/Motorola-RIZR-Z3-Cell-Phones-review-manual/id/918ag402/t/1-2/",null,"3.45","Mobile Phone • Slider • Talk Time Up to 195 min • GSM • 2 Megapixel Camera Resolution","1994175307","Merging an innovative slider design with an impressive feature set, the MOTORIZR delivers a dynamic mobile package for those socially active, on-the-go consumers who demand style, fun and adventure. ...",true,null,21,285,5,"cell phone","Cell_Phones","Motorola",2,900501,true,4,0,1153897200000,0]},{"data":[273118,"Palm Treo 750","/d/prodimg?mediatype=0&id=D191B3F2-6B4F-4AC5-82C6-FDC137F225FD","85x64","/d/prodimg?mediatype=1&id=63813261-0022-4526-8221-2949C1C2820B","200x150","299.00","360.00",181,203,[1,0,2,3026],"329.50",918421,2,"Mid-range cell phone","Below average feature set","/s/Palm-750-Cell-Phones-review-manual/id/918ag421/t/1-2/",null,"2.85","Smartphone • Candy bar • Talk Time Up to 270 min • WCDMA (UMTS) / GSM • 1.3 Megapixel Camera Resolution","R310684","The Palm Treo 750 smartphone helps you stay connected on your terms. It combines phone, email, messaging, web, and Windows Mobile with Palm enhancements that make it easier than ever to stay ...",true,null,38,341,5,"cell phone","Cell_Phones","Palm",2,900501,true,4,0,1158390000000,0]},{"data":[280293,"Motorola RAZR V3xx","/d/prodimg?mediatype=0&id=CA60A970-84CB-4179-BB0F-365957A06880","85x64","/d/prodimg?mediatype=1&id=166FEFDD-2CC3-4680-ABFB-35898DCD7B2F","200x150","108.99","339.00",152,158,[1,0,2,3101],"224.00",962599,1,"Mid-range cell phone","Below average feature set","/s/Motorola-RAZR-V3xx-Cell-Phones-review-manual/id/962dj599/t/1-2/",null,"3.8","Mobile Phone • Folder type phone • Talk Time Up to 210 min • GSM • 1.3 Megapixel Camera Resolution","1994651966","Featuring the perfect blend of broadband-like speed, dynamic multimedia capabilities, and cutting-edge design, the MOTORAZR V3xx is the ultimate combination. The MOTORAZR V3xx delivers high-speed ...",true,null,16,150,5,"cell phone","Cell_Phones","Motorola",2,900501,true,4,0,1153897200000,0]},{"data":[280293,"Motorola W375","/d/prodimg?mediatype=0&id=DD27B881-EBD6-4D19-9CC9-25A3C6A7C2BB","85x64","/d/prodimg?mediatype=1&id=70A5AA25-42B4-42B6-AD9F-6C0BAF69EDAD","200x150","60.99","129.00",108,158,[0,1,2,3100],"95.00",962635,1,"Budget cell phone","Average feature set","/s/Motorola-W375-Cell-Phones-review-manual/id/962bh635/t/1-2/",null,"3.25","Mobile Phone • Folder type phone • Talk Time 150 min • GSM • 0.3 Megapixel Camera Resolution","1994175312","For design-crazy consumers who want a cost-friendly phone but aren't prepared to compromise on a sleek form factor and superior functionality, the Motorola W375 delivers a rich feature set at an ...",true,null,0,48,5,"cell phone","Cell_Phones","Motorola",2,900501,true,4,0,1153465200000,0]},{"data":[281173,"LG KE850","/d/prodimg?mediatype=0&id=873F0D5E-2A0F-4965-9F15-BEB7160E2536","85x64","/d/prodimg?mediatype=1&id=862FCB25-65A1-41B0-8EA1-63F3D0E5EE14","200x150","164.00","449.00",138,158,[1,0,2,3101],"178.50",2730426,1,"Mid-range cell phone","Below average feature set","/s/LG-KE850-Cell-Phones-review-manual/id/2730bh426/t/1-2/",null,"3.7","Mobile Phone • Candy bar • GSM • 2 Megapixel Camera Resolution","1994632058","The PRADA Phone by LG (KE850) is a unique, sophisticated and elegant mobile phone with the first complete advanced touch interface. The PRADA Phone by LG introduces the world's first advanced touch ...",true,null,37,191,5,"cell phone","Cell_Phones","LG",4,900501,true,4,0,1169452800000,0]},{"data":[280772,"Nokia N95","/d/prodimg?mediatype=0&id=45B88904-C508-4F9E-846A-8CA0D3FA3FA0","85x64","/d/prodimg?mediatype=1&id=B4FC28DF-98C2-4210-9D53-04C2069BA6CC","200x150","344.99","345.99",185,33,[1,2,0,3215],"345.49",2730431,0,"Mid-range cell phone","Better than average features","/s/Nokia-N95-Cell-Phones-review-manual/id/2730bh431/t/1-2/",null,"4.25","Smartphone • Slider • Talk Time Up to 390 min • WCDMA (UMTS) / GSM • 5 Megapixel Camera Resolution","1994363759","It's GPS. It's a photo studio. It's a mobile disco. It's the World Wide Web. It's anything you want it to be. Explore the Internet with 3.5G ease. Navigate the world with interactive maps and ...",true,null,50,842,5,"cell phone","Cell_Phones","Nokia",2,900501,true,4,0,1159426800000,0]},{"data":[529658,"Pharos GPS 600","/d/prodimg?mediatype=0&id=C8C2BA80-6333-44AD-B1AC-E80A39EE05B4","85x64","/d/prodimg?mediatype=1&id=D044A244-82E4-4611-975C-10BDF208F88F","200x150","429.99","567.95",218,201,[2,0,2,3030],"498.97",2730439,3,"High-end cell phone","Below average feature set","/s/Pharos-GPS-600-Cell-Phones-review-manual/id/2730bh439/t/1-2/",null,"4.75","Smartphone • Candy bar • Talk Time Up to 300 min • GSM • 2 Megapixel Camera Resolution","1994721405","The Pharos 600 is one of the most versatile and full-featured mobile devices available on the market. The GPS Phone 600 makes it easy to find your destination with turn-by-turn spoken instructions and ...",true,null,4,4,5,"cell phone","Cell_Phones","Pharos",2,900501,true,4,0,1180681200000,0]},{"data":[281173,"LG KE970","/d/prodimg?mediatype=0&id=5C0BCE50-F971-494B-B078-3FBC77AFB55F","85x64","/d/prodimg?mediatype=1&id=2B5D7C59-7358-4A2D-9CE5-78A6BD4765CB","200x150","134.99","189.99",131,97,[1,2,1,3151],"155.00",2754403,1,"Mid-range cell phone","Better than average features","/s/LG-KE970-Cell-Phones-review-manual/id/2754ag403/t/1-2/",null,"3.55","Mobile Phone • Slider • Talk Time Up to 160 min • GSM • 2 Megapixel Camera Resolution","1994698962","LG Shine (model: KE970) is a handset in LG's premium Black Label series of mobile phones. Shine - a stunning, full-metal bodied slider phone - offers mobile users the best of both worlds with amazing ...",true,null,23,169,5,"cell phone","Cell_Phones","LG",4,900501,true,4,0,1170921600000,0]},{"data":[200659,"HP iPAQ 510","/d/prodimg?mediatype=0&id=5F073700-0991-4C2C-842B-CBA6C49767A7","85x64","/d/prodimg?mediatype=1&id=BC897600-944D-4B2C-B561-13C96017A592","200x150","219.00","426.79",180,199,[1,0,2,3033],"322.90",3066949,1,"Mid-range cell phone","Below average feature set","/s/HP-510-Cell-Phones-review-manual/id/3066bh949/t/1-2/",null,"3.65","Smartphone • Candy bar • Talk Time Up to 390 min • GSM • 1.3 Megapixel Camera Resolution","1994786182","It's small in size, but don't be fooled... HP iPAQ 510 Voice Messenger is big on functionality. Get ready to take your office on the road and work where you want, when you want; easily doing your ...",true,null,7,68,5,"cell phone","Cell_Phones","HP",2,900501,true,4,0,1171353600000,0]},{"data":[280293,"Motorola RAZR2 V9","http://ai.pricegrabber.com/pi/5/04/42/50442728_75.jpg","75x75","http://ai.pricegrabber.com/pi/5/04/42/50442728_160.jpg","160x160","248.99","459.00",186,159,[1,1,2,3098],"354.00",3124356,1,"Mid-range cell phone","Average feature set","/s/Motorola-RAZR2-V9-Cell-Phones-review-manual/id/3124ci356/t/1-2/",null,"3.65","Mobile Phone • Folder type phone • WCDMA (UMTS) / GSM • 2 Megapixel Camera Resolution","1994783092","The RAZR2 V9m is a technological show-stopper equipped with an astonishing array of features. The stunning evolution of the RAZR brand, the RAZR2 V9m sports a sleek and sophisticated look with the ...",true,null,25,220,5,"cell phone","Cell_Phones","Motorola",2,900501,true,4,0,1180076400000,0]},{"data":[281112,"Sony Ericsson S500i","/d/prodimg?mediatype=0&id=EA4436A7-8A9A-4355-A0F1-04F6C89C074E","85x64","/d/prodimg?mediatype=1&id=385985B8-11B5-4FC3-AF49-2F7319AD31E0","200x150","148.99","152.00",130,143,[1,0,2,3124],"150.50",3124361,1,"Mid-range cell phone","Below average feature set","/s/Sony-Ericsson-S500i-Cell-Phones-review-manual/id/3124ci361/t/1-2/",null,"3.8","Mobile Phone • Slider • Talk Time Up to 540 min • GSM • 2 Megapixel Camera Resolution","1994981283","The slim S500i keeps you in harmony with the world around you. Let desktop and menu themes change with the season; or as day turns to night. Slide the S500i open to reveal materials and patterns ...",true,null,43,83,5,"cell phone","Cell_Phones","Sony Ericsson",2,900501,true,4,0,1184223600000,0]},{"data":[280772,"Nokia 8600","/d/prodimg?mediatype=0&id=232855D0-8756-422A-B95F-EAFD1D36275B","85x64","/d/prodimg?mediatype=1&id=F28FD0FD-722D-41C5-984B-3B7F35F311A5","200x150","554.00","799.83",248,200,[2,0,2,3031],"676.92",3124362,1,"High-end cell phone","Below average feature set","/s/Nokia-8600-Cell-Phones-review-manual/id/3124ci362/t/1-2/",null,"3.6","Mobile Phone • Slider • Talk Time Up to 222 min • GSM • 2 Megapixel Camera Resolution","R505955","With its sleek lines and luxurious attention to detail, the Nokia 8600 Luna will show you in a whole new light. The stylish exterior is the perfect façade for what lies inside - open the precision ...",true,null,28,11,5,"cell phone","Cell_Phones","Nokia",2,900501,true,5,0,1184914800000,0]},{"data":[281283,"RIM 8820","/d/prodimg?mediatype=0&id=82E962C4-C045-4BC5-AF96-0C87A81BB727","85x64","/d/prodimg?mediatype=1&id=C0360F4C-97CE-46DF-AD89-2293FBCA3D59","200x150","279.00","434.99",187,198,[1,0,2,3034],"357.00",3842016,1,"Mid-range cell phone","Below average feature set","/s/RIM-8820-Cell-Phones-review-manual/id/3842ag016/t/1-2/",null,"3.6","Smartphone • Candy bar • Talk Time Up to 330 min • GSM","R310602","The BlackBerry 8820 smartphone is the stylish way to get things done. With powerful capabilities, yet incredibly compact and slim, it combines a stylish design with a premium finish. Elegant and ...",true,null,50,51,5,"cell phone","Cell_Phones","RIM",2,900501,true,4,0,1184914800000,0]},{"data":[280293,"Motorola RAZR2 V8","/d/prodimg?mediatype=0&id=678692F0-6379-4BD2-8D45-93A373747174","85x64","/d/prodimg?mediatype=1&id=75D3D30D-3C47-4DB2-AD71-B0EF9072B2B4","200x150","195.00","195.00",142,80,[1,1,1,3160],"195.00",4559215,0,"Mid-range cell phone","Average feature set","/s/Motorola-RAZR2-V8-Cell-Phones-review-manual/id/4559ag215/t/1-2/",null,"4.0","Mobile Phone • Folder type phone • Talk Time Up to 470 min • GSM • 2 Megapixel Camera Resolution","R204334","The MOTORAZR2 V8 brings the revolutionary RAZR form to a new level of sophistication and function. Packed with powerhouse features, this unbelievably strong stainless steel structure feeds the ...",true,null,46,102,5,"cell phone","Cell_Phones","Motorola",1,900501,true,4,0,1184569200000,0]},{"data":[1002197,"Pantech Duo","/d/prodimg?mediatype=0&id=2461D152-F62E-44E8-A1E5-966B242D083B","85x64","/d/prodimg?mediatype=1&id=6986F9A3-CF19-433C-A6F8-A1CDCEDAE2A6","200x150","259.00","269.00",166,194,[1,0,2,3041],"269.00",5078552,2,"Mid-range cell phone","Below average feature set","/s/Pantech-Duo-Cell-Phones-review-manual/id/5078ci552/t/1-2/",null,"2.65","Smartphone • Dual slider • Talk Time Up to 180 min • WCDMA (UMTS) / GSM • 1.3 Megapixel Camera Resolution","R310734","Pantech duo - it's like any phone you've ever seen... Until you open it, that is. Pantech duo features an innovative dual-slide design offering an oversize display, a full QWERTY keyboard, and a ...",true,null,17,147,5,"cell phone","Cell_Phones","Pantech",3,900501,true,4,0,1193727600000,0]},{"data":[280772,"Nokia E51","/d/prodimg?mediatype=0&id=22D03D0C-E47C-4EA8-87F9-EF6880E19D49","85x64","/d/prodimg?mediatype=1&id=3AD52C3E-228D-46C4-A1EA-1EFA61D2B135","200x150","check price","check price",160,54,[1,2,0,3181],"249.92",6743095,0,"Mid-range cell phone","Better than average features","/s/Nokia-E51-Cell-Phones-review-manual/id/6743dj095/t/1-2/",null,"4.45","Smartphone • Candy bar • Talk Time 325 min • WCDMA (UMTS) / GSM • 2 Megapixel Camera Resolution","R313798","Classically designed with high-speed mobile browsing, email, multimedia features, a multitude of connectivity options, and convenient shortcut keys.",true,null,45,140,5,"cell phone","Cell_Phones","Nokia",2,900501,true,4,0,1191394800000,0]},{"data":[281283,"RIM Curve 8300","/d/prodimg?mediatype=0&id=5C7AE15C-F0D7-4C5F-95CF-1460BC3C2473","85x64","/d/prodimg?mediatype=1&id=5C7AE15C-F0D7-4C5F-95CF-1460BC3C2473","200x150","234.99","237.99",156,191,[1,0,2,3047],"236.49",7786737,1,"Mid-range cell phone","Below average feature set","/s/RIM-Curve-8300-Cell-Phones-review-manual/id/7786bh737/t/1-2/",null,"3.8","Smartphone • Candy bar • Talk Time Up to 240 min • GSM • 2 Megapixel Camera Resolution","1995644813","Featuring clean lines and soft edges, the BlackBerry Curve 8300 smartphone is the smallest and lightest BlackBerry smartphone ever to come with a full QWERTY keyboard. It’s packed with incredible ...",true,null,23,370,5,"cell phone","Cell_Phones","RIM",2,900501,true,4,0,1178175600000,0]},{"data":[281112,"Sony Ericsson K850i","/d/prodimg?mediatype=0&id=2BE4D421-0655-45ED-B918-E4A81DF32D36","85x64","/d/prodimg?mediatype=1&id=37FF357E-A165-44E1-BC72-7D74F5A9E633","200x150","289.00","289.00",171,138,[1,2,1,3131],"289.00",9236175,1,"Mid-range cell phone","Better than average features","/s/Sony-Ericsson-K850i-Cell-Phones-review-manual/id/9236ci175/t/1-2/",null,"3.65","Mobile Phone • Candy bar • Talk Time Up to 540 min • WCDMA (UMTS) / GSM • 5 Megapixel Camera Resolution","1995618563","The K850i Cyber-shot phone is a true digital still camera - down to the very last of its 5 megapixels.",true,null,50,153,5,"cell phone","Cell_Phones","Sony Ericsson",1,900501,true,4,0,1175670000000,0]},{"data":[1075662,"Asus P527","/d/prodimg?mediatype=0&id=5131ED71-B5C3-48C1-AE6C-158D4640E85E","85x64","/d/prodimg?mediatype=1&id=AA4BC92D-787F-4DF7-A6EB-2B0AB84D54DD","200x150","567.82","636.96",236,200,[2,0,2,3031],"602.42",12050403,3,"High-end cell phone","Below average feature set","/s/Asus-P527-Cell-Phones-review-manual/id/12050ag403/t/1-2/",null,"3.75","Smartphone • Candy bar • Talk Time Up to 300 min • GSM • 2 Megapixel Camera Resolution","1995341931","Catering to users who require convenient GPS navigation and full support for business and multimedia functions, ASUS, the leading producer of top-notch handhelds, has released the ASUS P527. This ...",true,null,20,9,5,"cell phone","Cell_Phones","Asus",4,900501,true,4,0,1200902400000,0]},{"data":[489470,"HTC Touch Dual","/d/prodimg?mediatype=0&id=3AED8FDF-29AA-49DA-BC43-0D8686B040D7","85x64","/d/prodimg?mediatype=1&id=4152AFCF-0C71-4FE9-8E0A-12A658473C00","200x150","389.00","504.01",213,199,[1,0,2,3033],"476.99",14684166,1,"Mid-range cell phone","Below average feature set","/s/HTC-Touch-Dual-Cell-Phones-review-manual/id/14684ci166/t/1-2/",null,"3.45","Smartphone • Slider • Talk Time Up to 300 min • WCDMA (UMTS) / GSM • 2 Megapixel Camera Resolution","R289314","Delivering a revolutionary touch experience that will change the way you use your phone, forever. The HTC Touch Dual effortlessly combines an intuitive touch screen and keypad within a stunning ...",true,null,33,24,5,"cell phone","Cell_Phones","HTC",5,900501,true,4,0,1193814000000,0]},{"data":[280293,"Motorola SLVR L6i","/d/prodimg?mediatype=0&id=883FD5FF-0E4D-413E-8A33-ACFA0D4B01B4","85x64","/d/prodimg?mediatype=1&id=883FD5FF-0E4D-413E-8A33-ACFA0D4B01B4","200x150","75.00","99.99",100,145,[0,2,2,3121],"80.49",14715267,2,"Budget cell phone","Better than average features","/s/Motorola-SLVR-L6i-Cell-Phones-review-manual/id/14715ci267/t/1-2/",null,"2.6","Mobile Phone • Candy bar • Talk Time 325 min • GSM - Tri-Band","R278088","Created for fun and designed for elegance, this slim colorful mobile phone comes complete with i-Mode service. Tricked out for fast reliable access to multimedia content and messaging. The added VGA ...",true,null,0,14,5,"cell phone","Cell_Phones","Motorola",4,900501,true,3,0,1215154800000,0]},{"data":[272617,"Apple iPhone 3G 16GB","/d/prodimg?mediatype=0&id=07D6109C-C4B5-4D8D-9A78-88857FC2B300","85x64","/d/prodimg?mediatype=1&id=4CABF785-AF9A-4672-BCE9-64C3261E070F","200x150","299.00","299.00",174,91,[1,2,1,3154],"299.00",17272962,0,"Mid-range cell phone","Better than average features","/s/Apple-iPhone-3G-16GB-Cell-Phones-review-manual/id/17272ci962/t/1-2/",null,"4.4","Smartphone • Candy bar • Talk Time Up to 600 min • WCDMA (UMTS) / GSM • 2 Megapixel Camera Resolution","1995649508","Cut, copy, and paste with a tap. Send text, photos, locations, and more. Search across your iPhone. The iPhone 3G has some great features. Phone, iPod, and Internet device in one, iPhone 3G offers ...",true,null,1,2200,5,"cell phone","Cell_Phones","Apple",1,900501,true,4,0,1213081200000,0]},{"data":[200659,"HP iPAQ 910c","http://ai.pricegrabber.com/pi/8/12/42/81242356_75.jpg","75x75","http://ai.pricegrabber.com/pi/8/12/42/81242356_160.jpg","160x160","409.00","534.70",216,199,[2,0,2,3033],"489.39",19614691,1,"High-end cell phone","Below average feature set","/s/HP-910c-Cell-Phones-review-manual/id/19614dj691/t/1-2/",null,"3.55","Smartphone • Candy bar • Talk Time Up to 240 min • WCDMA (UMTS) / GSM • 3 Megapixel Camera Resolution","1995643862","",true,null,8,107,5,"cell phone","Cell_Phones","HP",4,900501,true,4,0,1189666800000,0]},{"data":[280772,"Nokia E71","/d/prodimg?mediatype=0&id=E546798C-FFB4-49C0-AAD8-652CDAD5F9EF","85x64","/d/prodimg?mediatype=1&id=C314CCD4-7B3C-4B1F-9AC4-2326BB0CF829","200x150","279.99","553.50",184,44,[1,2,0,3196],"343.72",20332810,0,"Mid-range cell phone","Better than average features","/s/Nokia-E71-Cell-Phones-review-manual/id/20332ag810/t/1-2/",null,"4.5","Smartphone • Candy bar • Talk Time Up to 270 min • WCDMA (UMTS) / GSM • 3.2 Megapixel Camera Resolution","1995700779","Making the most of your day at work and away, Nokia E71 is mobile efficiency, beautifully styled.",true,null,50,575,5,"cell phone","Cell_Phones","Nokia",7,900501,true,4,1,1213772400000,0]},{"data":[280772,"Nokia N96","/d/prodimg?mediatype=0&id=E0EE50A4-D9DF-43F1-827B-B71147AAC60E","85x64","/d/prodimg?mediatype=1&id=C3853FEB-5BFF-423C-9EE6-6EBC316C14A2","200x150","567.00","749.99",247,41,[2,2,0,3202],"673.60",20332812,1,"High-end cell phone","Better than average features","/s/Nokia-N96-Cell-Phones-review-manual/id/20332ag812/t/1-2/",null,"3.55","Smartphone • Dual slider • Talk Time Up to 220 min • WCDMA (UMTS) / GSM • 5 Megapixel Camera Resolution","1995987752","This product is designed for great video and live TV. Turn on and enjoy prime time mobile entertainment that suits your schedule. You can enjoy high-quality video on a large bright display with superb ...",true,null,50,204,5,"cell phone","Cell_Phones","Nokia",6,900501,true,4,0,1204531200000,0]},{"data":[280293,"Motorola ROKR E8","http://ai.pricegrabber.com/pi/7/39/01/73901720_75.jpg","75x75","http://ai.pricegrabber.com/pi/7/39/01/73901720_160.jpg","160x160","check price","check price",138,146,[1,0,2,3120],"179.99",21178025,1,"Mid-range cell phone","Below average feature set","/s/Motorola-ROKR-E8-Cell-Phones-review-manual/id/21178ag025/t/1-2/",null,"3.15","Mobile Phone • Candy bar • GSM • 2 Megapixel Camera Resolution","1995626520","",true,null,43,37,5,"cell phone","Cell_Phones","Motorola",1,900501,true,4,0,1199865600000,0]},{"data":[1002197,"Pantech Breeze","/d/prodimg?mediatype=0&id=53E2BA25-0E68-4DC9-9C06-D66552EFAE2C","85x64","/d/prodimg?mediatype=1&id=53E2BA25-0E68-4DC9-9C06-D66552EFAE2C","200x150","29.99","29.99",54,146,[0,0,2,3120],"29.99",21311937,1,"Budget cell phone","Below average feature set","/s/Pantech-Breeze-Cell-Phones-review-manual/id/21311bh937/t/1-2/",null,"3.05","Mobile Phone • Folder type phone • Talk Time Up to 180 min • GSM • 0.3 Megapixel Camera Resolution","R315890","The PANTECH breEZe is a breakthrough in intuitive cell phone design. Every aspect - from its sleek, streamlined design and extra-large color display to its simplified user interface and back-lit EZ ...",true,null,7,35,5,"cell phone","Cell_Phones","Pantech",1,900501,true,4,0,1211958000000,0]},{"data":[272617,"Apple iPhone 3G 8GB","/d/prodimg?mediatype=0&id=39EA7987-E2B7-4754-8575-9E4B58CA1F2D","85x64","/d/prodimg?mediatype=1&id=39EA7987-E2B7-4754-8575-9E4B58CA1F2D","200x150","199.00","199.00",143,58,[1,2,0,3174],"199.00",21995797,0,"Mid-range cell phone","Better than average features","/s/Apple-iPhone-3G-8GB-Cell-Phones-review-manual/id/21995dj797/t/1-2/",null,"4.25","Smartphone • Candy bar • Talk Time Up to 600 min • WCDMA (UMTS) / GSM • 2 Megapixel Camera Resolution","1995653914","Cut, copy, and paste with a tap. Send text, photos, locations, and more. Search across your iPhone. Phone, iPod, and Internet device in one, iPhone 3G offers desktop-class email, an amazing maps ...",true,null,0,290,5,"cell phone","Cell_Phones","Apple",1,900501,true,4,0,1213081200000,0]},{"data":[273118,"Palm Treo Pro","/d/prodimg?mediatype=0&id=E0FD8B4D-41A3-4CD4-A06C-E9376AB05BD9","85x64","/d/prodimg?mediatype=1&id=C1A31CD9-F5FD-4A75-AD8A-D83B22E913F3","200x150","399.83","586.18",204,182,[1,0,2,3060],"435.29",22915572,1,"Mid-range cell phone","Below average feature set","/s/Palm-Pro-Cell-Phones-review-manual/id/22915ci572/t/1-2/",null,"3.6","Smartphone • Candy bar • Talk Time Up to 300 min • WCDMA (UMTS) / GSM • 2 Megapixel Camera Resolution","1995856648","The Treo Pro smartphone by Palm is thoughtfully designed for people who define their workday the way they see fit. Respond to business and personal email, stay on top of appointments and contacts, and ...",true,null,15,169,5,"cell phone","Cell_Phones","Palm",4,900501,true,3,0,1219302000000,0]},{"data":[201348,"Samsung SGH-A837","/d/prodimg?mediatype=0&id=069DFF13-FD87-4725-95CB-5FE3961ACF02","85x64","/d/prodimg?mediatype=1&id=A6019377-B09E-4D85-BF3B-E807D2BBFE9B","200x150","129.99","129.99",123,101,[1,0,1,3149],"129.99",23041610,1,"Mid-range cell phone","Below average feature set","/s/Samsung-SGH-A837-Cell-Phones-review-manual/id/23041ag610/t/1-2/",null,"3.6","Mobile Phone • Folder type phone • Talk Time Up to 300 min • WCDMA (UMTS) / GSM • 1.3 Megapixel Camera Resolution","1995905899","With the Samsung Rugby, technology finally gets tough. This heavy-duty work phone makes it easy to get the job done right - with Push-to-Talk technology, a large external speaker, 3G high-speed data ...",true,null,5,60,5,"cell phone","Cell_Phones","Samsung",1,900501,true,3,0,1221721200000,0]},{"data":[280772,"Nokia E66","/d/prodimg?mediatype=0&id=CE544368-6F72-4E39-9C5D-265C6B82A3B6","85x64","/d/prodimg?mediatype=1&id=52B4EE8B-CFDC-414C-AD89-308CB9E068BE","200x150","334.00","509.72",201,77,[1,2,1,3161],"421.86",23093438,0,"Mid-range cell phone","Better than average features","/s/Nokia-E66-Cell-Phones-review-manual/id/23093bh438/t/1-2/",null,"4.25","Mobile Phone • Slider • Talk Time Up to 210 min • WCDMA (UMTS) / GSM • 3.2 Megapixel Camera Resolution","1995853080","PRODUCT FEATURES: Excellent personal information management in modern slide design Two customizable home screen views with active stand-by plug-ins and application shortcuts Turn-to-full view Quick ...",true,null,34,18,5,"cell phone","Cell_Phones","Nokia",2,900501,true,3,0,1213945200000,0]},{"data":[201348,"Samsung SGH-A777","/d/prodimg?mediatype=0&id=CA5848A5-BD22-47E3-A66F-B2EE3852FAD9","85x64","/d/prodimg?mediatype=1&id=7A630985-6A01-46BE-BC21-B67A1E1FB2FC","200x150","29.99","29.99",54,122,[0,2,1,3139],"29.99",23135618,2,"Budget cell phone","Better than average features","/s/Samsung-SGH-A777-Cell-Phones-review-manual/id/23135ag618/t/1-2/",null,"2.15","Mobile Phone • Slider • Talk Time Up to 180 min • WCDMA (UMTS) / GSM • 1.3 Megapixel Camera Resolution","R204866","With 3G high-speed data access, the Samsung a777 gives you all the speed you want in a mobile phone, with the style you demand. On the outside, it's a slim, sleek slide phone. Inside, it's a serious ...",true,null,0,12,5,"cell phone","Cell_Phones","Samsung",1,900501,true,3,0,1226563200000,0]},{"data":[201348,"Samsung SGH-A767","/d/prodimg?mediatype=0&id=5A51ED6D-5CEC-4965-8937-67C8E66439A3","85x64","/d/prodimg?mediatype=1&id=4075B870-F5F3-4452-ABBB-0536D73DFF45","200x150","29.99","29.99",54,52,[0,2,0,3184],"29.99",23135619,1,"Budget cell phone","Better than average features","/s/Samsung-SGH-A767-Cell-Phones-review-manual/id/23135ag619/t/1-2/",null,"3.65","Mobile Phone • Slider • Talk Time Up to 180 min • WCDMA (UMTS) / GSM • 1.3 Megapixel Camera Resolution","R204868","With this Samsung SGH A767 Propel, you can keep in touch with your friends by IM - with easy access to Yahoo!, AIM and Windows Live, keeping in touch will be easy and fun! You can also send pictures ...",true,null,9,81,5,"cell phone","Cell_Phones","Samsung",1,900501,true,3,0,1225263600000,0]},{"data":[201348,"Samsung SGH-A237","/d/prodimg?mediatype=0&id=A6561B5A-25F5-4DB7-B1F7-23203E7A0F60","85x64","/d/prodimg?mediatype=1&id=23D88777-4987-4CAB-B4D2-3B951F4CC85F","200x150","79.99","79.99",100,99,[0,2,1,3150],"79.99",23135622,3,"Budget cell phone","Better than average features","/s/Samsung-SGH-A237-Cell-Phones-review-manual/id/23135ag622/t/1-2/",null,"2.55","Mobile Phone • Folder type phone • Talk Time Up to 300 min • GSM • 0.3 Megapixel Camera Resolution","R204875","You just want a good mobile phone so you can make some calls, right? Okay, maybe you want a phone that can also handle some messaging. And some emails. And if it had a camera, that would be nice, too. ...",true,null,4,7,5,"cell phone","Cell_Phones","Samsung",1,900501,true,3,0,1220511600000,0]},{"data":[280772,"Nokia N79","/d/prodimg?mediatype=0&id=DB11EE5C-4DF6-4EBA-A7C5-CCDA869D66AA","85x64","/d/prodimg?mediatype=1&id=DB11EE5C-4DF6-4EBA-A7C5-CCDA869D66AA","200x150","327.39","346.06",183,61,[1,2,0,3170],"336.72",23135792,0,"Mid-range cell phone","Better than average features","/s/Nokia-N79-Cell-Phones-review-manual/id/23135dj792/t/1-2/",null,"4.15","Smartphone • Candy bar • Talk Time Up to 330 min • WCDMA (UMTS) / GSM • 5 Megapixel Camera Resolution","R436613","Colorful and powerful. The Nokia N79 intuitively matches the color of your screen with three smart cover combinations, and orientates the screen to match your point of view. Keep your music close to ...",true,null,50,40,5,"cell phone","Cell_Phones","Nokia",2,900501,true,3,0,1226908800000,0]},{"data":[280772,"Nokia N85","/d/prodimg?mediatype=0&id=2BCFF6CB-DB50-42B8-8D13-969B2F669413","85x64","/d/prodimg?mediatype=1&id=2BCFF6CB-DB50-42B8-8D13-969B2F669413","200x150","329.99","405.73",189,32,[2,1,0,3216],"364.44",23135793,1,"High-end cell phone","Average feature set","/s/Nokia-N85-Cell-Phones-review-manual/id/23135dj793/t/1-2/",null,"3.7","Smartphone • Dual slider • Talk Time 325 min • WCDMA (UMTS) / GSM • 5 Megapixel Camera Resolution","R436152","Harness the power behind this sleek, compact design. Capture your memories with the 5-megapixel camera and bring them to life in vibrant, natural colors on the stunning OLED display. Try the preloaded ...",true,null,44,75,5,"cell phone","Cell_Phones","Nokia",4,900501,true,3,0,1219993200000,0]},{"data":[281112,"Sony Ericsson Walkman W595a","/d/prodimg?mediatype=0&id=74E0D38B-5CF0-4A10-9EC6-F55512D04438","85x64","/d/prodimg?mediatype=1&id=2DB13E48-528D-4673-8E51-5527334CED61","200x150","259.99","259.99",163,93,[1,1,1,3153],"259.99",23136779,0,"Mid-range cell phone","Average feature set","/s/Sony-Ericsson-W595a-Cell-Phones-review-manual/id/23136dj779/t/1-2/",null,"4.1","Mobile Phone • Slider • Talk Time 540 min • WCDMA (UMTS) / GSM • 3.2 Megapixel Camera Resolution","R203633","The Sony Ericsson W595a Walkman brings the ease of digital music players to your mobile. So alongside all the usual advanced phone features, you can also download, stream, store and play back music in ...",true,null,0,20,5,"cell phone","Cell_Phones","Sony Ericsson",1,900501,true,3,0,1228809600000,0]},{"data":[280772,"Nokia 5800","/d/prodimg?mediatype=0&id=736E2D60-9AD2-4157-A98C-83499C9295AC","85x64","/d/prodimg?mediatype=1&id=736E2D60-9AD2-4157-A98C-83499C9295AC","200x150","269.99","332.00",175,34,[1,2,0,3213],"302.34",23150628,0,"Mid-range cell phone","Better than average features","/s/Nokia-5800-Cell-Phones-review-manual/id/23150bh628/t/1-2/",null,"4.1","Smartphone • Candy bar • Talk Time Up to 540 min • WCDMA (UMTS) / GSM • 3.2 Megapixel Camera Resolution","R436151","This amazing 3.2" high-definition touchscreen looks unlike any other and puts everything at your fingertips. It is perfectly proportioned for one hand, featuring intuitive fingertip, stylus, or ...",true,null,50,514,5,"cell phone","Cell_Phones","Nokia",4,900501,true,2,0,1222930800000,0]},{"data":[280772,"Nokia N97","/d/prodimg?mediatype=0&id=939E65A3-724E-4141-B61B-18381D59ACF8","85x64","/d/prodimg?mediatype=1&id=51AEC99A-9E1A-4047-8E4C-8C8DE042C8F1","200x150","499.99","699.95",243,63,[2,1,1,3169],"642.65",23152515,1,"High-end cell phone","Average feature set","/s/Nokia-N97-Cell-Phones-review-manual/id/23152ag515/t/1-2/",null,"3.65","Smartphone • Slider • Talk Time Up to 400 min • WCDMA (UMTS) / GSM • 5 Megapixel Camera Resolution","R428616","The Nokia N97 introduces the concept of 'social location'. With integrated A-GPS sensors and an electronic compass, the Nokia N97 mobile computer intuitively understands where it is. The Nokia N97 ...",true,null,50,191,5,"cell phone","Cell_Phones","Nokia",4,900501,true,3,0,1228377600000,0]},{"data":[280293,"Motorola VA76r","/d/prodimg?mediatype=0&id=A2ABB000-2DC1-443D-82FC-F036B9924ABB","85x64","/d/prodimg?mediatype=1&id=A2ABB000-2DC1-443D-82FC-F036B9924ABB","200x150","199.99","199.99",143,123,[1,0,1,3138],"199.99",23204637,1,"Mid-range cell phone","Below average feature set","/s/Motorola-VA76r-Cell-Phones-review-manual/id/23204bh637/t/1-2/",null,"3.3","Mobile Phone • Folder type phone • Talk Time Up to 300 min • WCDMA (UMTS) / GSM • 2 Megapixel Camera Resolution","R323178","The Motorola Tundra VA76r makes it easier to keep moving in the real world. You can drop it, use it in the rain or get it dirty, and it'll all be okay. When your client has a pressing question, you ...",true,null,11,53,5,"cell phone","Cell_Phones","Motorola",1,900501,true,3,0,1232092800000,0]},{"data":[280772,"Nokia E63","/d/prodimg?mediatype=0&id=49519626-904E-4871-B8B7-3D4B8A28F70A","85x64","/d/prodimg?mediatype=1&id=0EF21655-1408-4DB3-AC35-B868300DB55B","200x150","199.99","248.95",152,15,[1,2,0,3245],"224.47",23204638,0,"Mid-range cell phone","Better than average features","/s/Nokia-E63-Cell-Phones-review-manual/id/23204bh638/t/1-2/",null,"4.25","Smartphone • Candy bar • Talk Time Up to 660 min • WCDMA (UMTS) / GSM • 2 Megapixel Camera Resolution","R323183","Today, mobile professionals need to manage their business and personal information, and connect with clients, colleagues, family and friends. Whether it's a quick text message or a detailed email with ...",true,null,50,173,5,"cell phone","Cell_Phones","Nokia",2,900501,true,3,0,1231747200000,0]},{"data":[280772,"Nokia N86","/d/prodimg?mediatype=0&id=45FFE5C4-197C-4BCB-8795-A05BC295F051","85x64","/d/prodimg?mediatype=1&id=FEFC70BE-D9C2-4EF2-8E25-FD8F37C11B8A","200x150","399.99","464.32",205,18,[2,1,0,3239],"439.29",23270807,0,"High-end cell phone","Average feature set","/s/Nokia-N86-Cell-Phones-review-manual/id/23270ag807/t/1-2/",null,"4.65","Smartphone • Dual slider • WCDMA (UMTS) / GSM • 8 Megapixel Camera Resolution","R483743","Easy enough for a novice to use, the Nokia N86 8MP packs enough punch to impress an experienced photographer. This includes a wide-angle Carl Zeiss Tessar lens for panoramic pictures, shorter ...",true,null,49,10,5,"cell phone","Cell_Phones","Nokia",3,900501,true,3,0,1235116800000,0]},{"data":[280772,"Nokia E75","/d/prodimg?mediatype=0&id=7BAC35F7-420D-4424-B0E0-21E59ECB182E","85x64","/d/prodimg?mediatype=1&id=D3C6582E-75A7-485B-8C76-76F0B6EC4BBD","200x150","351.18","615.00",199,33,[2,1,0,3215],"409.99",23300453,1,"High-end cell phone","Average feature set","/s/Nokia-E75-Cell-Phones-review-manual/id/23300ci453/t/1-2/",null,"3.65","Smartphone • Slider • Talk Time 320 min • WCDMA (UMTS) / GSM • 3.2 Megapixel Camera Resolution","R323179","Manage your business and personal life with the Nokia E75. Type quickly with the side slide design, check email on the fly and browse the Internet in your free time.",true,null,48,53,5,"cell phone","Cell_Phones","Nokia",8,900501,true,3,0,1236240000000,0]},{"data":[529658,"Pharos Traveler 137","/d/prodimg?mediatype=0&id=56A2C0E3-2A40-403C-A814-B49951D4522E","85x64","/d/prodimg?mediatype=1&id=56A2C0E3-2A40-403C-A814-B49951D4522E","200x150","489.99","514.32",218,198,[2,0,2,3034],"502.16",23353355,2,"High-end cell phone","Below average feature set","/s/Pharos-Traveler-137-Cell-Phones-review-manual/id/23353ci355/t/1-2/",null,"2.85","Smartphone • Candy bar • Talk Time 240 min • WCDMA (UMTS) / GSM • 3.1 Megapixel Camera Resolution","R442545","The Traveler 137 is a GPS smartphone with 3.5" flush touch-screen WVGA display. The smartphone features the 3.5G communications capability based on a tri-band UMTS/HSDPA/HSUPA and quad-band ...",true,null,5,10,5,"cell phone","Cell_Phones","Pharos",2,900501,true,3,0,1240470000000,0]},{"data":[201348,"Samsung SGH-A257","http://a367.yahoofs.com/shopping/3147703/simg_t_ts6624183f71b3b5270aa46f8bf60e47b730744efjpg85?rm_____D2_wwHF5X","85x64","http://a367.yahoofs.com/shopping/3147703/simg_t_ms6624183f71b3b5270aa46f8bf60e47b730744efjpg175?rm_____DGYISfg4T","175x131","19.99","19.99",36,55,[0,1,0,3179],"19.99",23446245,1,"Budget cell phone","Average feature set","/s/Samsung-SGH-A257-Cell-Phones-review-manual/id/23446bh245/t/1-2/",null,"3.3","Mobile Phone • Candy bar • Talk Time 300 min • GSM • 0.3 Megapixel Camera Resolution","R439085","Introduce the Samsung Magnet - the ultimate expression in messaging, style and value. Heavy on functionality and light on the budget, the Magnet boasts a full QWERTY keyboard so you can express ...",true,null,3,19,5,"cell phone","Cell_Phones","Samsung",1,900501,true,1,0,1242802800000,0]},{"data":[272617,"Apple iPhone 3G S 16GB","/d/prodimg?mediatype=0&id=90679B45-875C-425C-B218-66AA2DA22202","85x64","/d/prodimg?mediatype=1&id=BEFFB258-99F8-4BEF-A66D-01D79FC2D9DC","200x150","697.99","781.00",257,165,[2,0,2,3089],"739.50",23455745,0,"High-end cell phone","Below average feature set","/s/Apple-iPhone-3G-S-16GB-Cell-Phones-review-manual/id/23455bh745/t/1-2/",null,"4.0","Smartphone • Candy bar • Talk Time Up to 600 min • WCDMA (UMTS) / GSM • 3 Megapixel Camera Resolution","R444472","The first thing you'll notice about iPhone 3GS is how quickly you can launch applications. Web pages render in a fraction of the time, and you can view email attachments faster. Improved performance ...",true,null,50,960,5,"cell phone","Cell_Phones","Apple",4,900501,true,0,0,1244530800000,0]},{"data":[272617,"Apple iPhone 3G S 32GB","/d/prodimg?mediatype=0&id=90679B45-875C-425C-B218-66AA2DA22202","85x64","/d/prodimg?mediatype=1&id=BEFFB258-99F8-4BEF-A66D-01D79FC2D9DC","200x150","878.87","879.99",274,179,[2,0,2,3066],"879.43",23455746,1,"High-end cell phone","Below average feature set","/s/Apple-iPhone-3G-S-32GB-Cell-Phones-review-manual/id/23455bh746/t/1-2/",null,"3.5","Smartphone • Candy bar • Talk Time Up to 600 min • WCDMA (UMTS) / GSM • 3 Megapixel Camera Resolution","R444471","The first thing you'll notice about iPhone 3GS is how quickly you can launch applications. Web pages render in a fraction of the time, and you can view email attachments faster. Improved performance ...",true,null,10,548,5,"cell phone","Cell_Phones","Apple",2,900501,true,1,0,1244530800000,0]},{"data":[280293,"Motorola QA1","/d/prodimg?mediatype=0&id=51B0AD08-BC6A-4DBD-9E27-F7D38A9CACE0","85x64","/d/prodimg?mediatype=1&id=A677A06F-82F8-4FAD-BD76-FA98645C2DF5","200x150","49.99","49.99",78,41,[0,2,0,3202],"49.99",23480203,0,"Budget cell phone","Better than average features","/s/Motorola-QA1-Cell-Phones-review-manual/id/23480ag203/t/1-2/",null,"4.25","Mobile Phone • Slider • Talk Time Up to 312 min • WCDMA (UMTS) / GSM • 2 Megapixel Camera Resolution","R444774","You can't help it that you're popular. Actually, you can, with Motorola Karma QA1. This curvy and compact device helps you slide your way up the social ladder with an effortless social networking ...",true,null,10,25,5,"cell phone","Cell_Phones","Motorola",1,900501,true,1,0,1245826800000,0]},{"data":[281112,"Sony Ericsson Walkman W705a","/d/prodimg?mediatype=0&id=49043309-5FE5-4386-9336-3495712FD59F","85x64","/d/prodimg?mediatype=1&id=49043309-5FE5-4386-9336-3495712FD59F","200x150","299.99","386.09",184,148,[1,0,2,3117],"343.04",23480215,3,"Mid-range cell phone","Below average feature set","/s/Sony-Ericsson-W705a-Cell-Phones-review-manual/id/23480ag215/t/1-2/",null,"3.5","Mobile Phone • Slider • Talk Time Up to 600 min • WCDMA (UMTS) / GSM • 3.2 Megapixel Camera Resolution","R447338","Made for multimedia lovers, the 3G-enabled15 Sony Ericsson W705a Walkman phone delivers a premium music experience with superb audio quality. Enjoy a premium music experience and quick access to ...",true,null,0,4,5,"cell phone","Cell_Phones","Sony Ericsson",2,900501,true,1,0,1242802800000,0]},{"data":[280772,"Nokia 5530","/d/prodimg?mediatype=0&id=56967A5F-4DA5-4D72-8104-25585991C46C","85x64","/d/prodimg?mediatype=1&id=9BE560BC-EDAB-4145-9FF2-32FEE99FD57E","200x150","189.99","305.46",159,58,[1,1,0,3175],"244.89",23511812,1,"Mid-range cell phone","Average feature set","/s/Nokia-5530-Cell-Phones-review-manual/id/23511ag812/t/1-2/",null,"3.65","Smartphone • Candy bar • Talk Time 294 min • WCDMA (UMTS) / GSM • 3.2 Megapixel Camera Resolution","R483742","The Nokia 5530 XpressMusic is a compact XpressMusic device that uses a touch interface for accessing people and content on the brilliantly clear homescreen. The 'scrolling' contacts bar provides ...",true,null,19,10,5,"cell phone","Cell_Phones","Nokia",4,900501,true,1,0,1249628400000,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;