' + businessHourM2FText + '
?
Saturday
' + '' + businessHourSATText + '
' + '?
Sunday
' + '' + businessHourSUNText + '
'; isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); resetRollover(); WALMART.$("#ROLLOVER_PICKUP_HOUR").show(); WALMART.$("#ROLLOVER_PICKUP_HOUR").html( pickupHourInfo); WALMART.$('#ROLLOVER').wmBubble('position',{top:(y-114),left:x}); WALMART.$('#ROLLOVER').wmBubble('update',WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); } else { pickupHourInfo = 'Please call for store hours.
'; isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); resetRollover(); WALMART.$("#ROLLOVER_PICKUP_HOUR").show(); WALMART.$("#ROLLOVER_PICKUP_HOUR").html(pickupHourInfo); WALMART.$('#ROLLOVER').wmBubble('position',{top:(y-38),left:x}); WALMART.$('#ROLLOVER').wmBubble('update',WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); } } function generateBusinessHourText(businessHour) { if (businessHour) { openTime = businessHour.openTime; closeTime = businessHour.closeTime; if ((openTime == '-1:-1 am' || openTime == '00:00 am') && closeTime == '00:00 am') { return 'Closed'; } else if (openTime == '00:00 am' && (closeTime == '11:59 pm' || closeTime == '-1:-1 am')) { return 'Open 24 hours'; } else { return openTime + ' ? ' + closeTime; } } } /* * This method added for VIBS project which used to show online price tooltip. */ function showOnlinePriceOverlayRollover(e) { var onliePriceTipContent = 'In-store prices vary from online prices - please visit your store for exact pricing. Online prices are not honored in our stores.' isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); resetRollover(); WALMART.$('#ROLLOVER_OTHER_TEXT').show(); WALMART.$('#ROLLOVER_OTHER_TEXT').html(onliePriceTipContent); e = (e) ? e : ((event) ? event : "") WALMART.$('#ROLLOVER').wmBubble('position',{top:getY(e) - 25,left:getX(e)}); WALMART.$('#ROLLOVER').wmBubble('update',WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); } var isRolloverShown = false; var rolloverIndex = 0; function showPreferredStoreRollover(e, ind) { var slapStoresData = WALMART.bot.stores; var spulStoresData = WALMART.spul.stores; var storesData = (typeof slapStoresData !== 'undefined' && slapStoresData && slapStoresData != '' && slapStoresData.stores != '') ? slapStoresData : spulStoresData; if (storesData != null && storesData.stores != null && storesData.stores != '' && (!isRolloverShown || rolloverIndex != ind)) { rolloverIndex = ind; isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); e = (e) ? e : ((window.event) ? window.event : "") var el = e.target; var storeIndex = ind - 1; resetRollover(); if(storesData.stores[storeIndex]!= undefined && storesData.stores[storeIndex].address != undefined ){ WALMART.$('#ROLLOVER_CITY').show(); WALMART.$('#ROLLOVER_ADDR1').show(); WALMART.$('#ROLLOVER_ADDR2').show(); WALMART.$('#ROLLOVER_CITY').html( storesData.stores[storeIndex].address.city); WALMART.$('#ROLLOVER_ADDR1').html(storesData.stores[storeIndex].address.fullStreet); WALMART.$('#ROLLOVER_ADDR2').html(storesData.stores[storeIndex].address.city + ", " + storesData.stores[storeIndex].address.stateCode + " " + storesData.stores[storeIndex].address.zipCode); WALMART.$('#ROLLOVER').wmBubble('position',{top:findPosY(el) - 66,left:findPosX(el)}); WALMART.$('#ROLLOVER').wmBubble('update',WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); } } } function showSelectedStoreRollover(e, city, fullstreet, zip, state) { // if (store!=null ){ //rolloverIndex=ind; isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); e = (e) ? e : ((window.event) ? window.event : "") resetRollover(); WALMART.$('#ROLLOVER_CITY').show(); WALMART.$('#ROLLOVER_ADDR1').show(); WALMART.$('#ROLLOVER_ADDR2').show(); WALMART.$('#ROLLOVER_CITY').html(city);//store.address.city; WALMART.$('#ROLLOVER_ADDR1').html(fullstreet);//store.address.fullStreet; WALMART.$('#ROLLOVER_ADDR2').html(city + ", " + state + " " + zip); WALMART.$('#ROLLOVER').wmBubble('position', {top: getY(e),left: getX(e)}); WALMART.$('#ROLLOVER').wmBubble('update', WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); } function showSOIRollover(e, desc) { showRollover(e, desc); } function hideRollover(e) { WALMART.$('#ROLLOVER').wmBubble('hide'); isRolloverShown = false; clearTimeout(hideTimer); } function resetRollover() { WALMART.$("#ROLLOVER_CITY").hide(); WALMART.$("#ROLLOVER_ADDR1").hide(); WALMART.$("#ROLLOVER_ADDR2").hide(); WALMART.$("#ROLLOVER_OTHER_TEXT").hide(); WALMART.$("#ROLLOVER_CLOSE").hide(); WALMART.$("#ROLLOVER_PICKUP_HOUR").hide(); } var hideTimer; function setHideTimer(elapseVal) { clearTimeout(hideTimer); hideTimer = setTimeout("hideRollover()", elapseVal); } var isOpera = (navigator.userAgent.indexOf('Opera') != -1); var isIE = (!isOpera && navigator.userAgent.indexOf('MSIE') != -1) function getX(e) { var posx; if (e.pageX) { posx = e.pageX; } else if (e.clientX) { posx = e.clientX; if (isIE) { posx += top.document.documentElement.scrollLeft + top.document.body.scrollLeft; } } return posx; } function getY(e, offset) { var defaultOffset = 66; var posy; if (e.pageY) { posy = e.pageY; } else if (e.clientY) { posy = e.clientY; if (isIE) { posy += top.document.documentElement.scrollTop + top.document.body.scrollTop; } } if (offset == undefined) { posy -= defaultOffset; } else { posy -= offset } return posy; } /*START S2S small format Changes */ function showExpressContentRollover(x, y) { expressStoreInfo = 'Our newest addition,
' +'Walmart Express, delivers
' +'Every Day Low Prices in a
' +'small store that is easy to shop.
'; isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); resetRollover(); WALMART.$("#ROLLOVER_OTHER_TEXT").show(); WALMART.$("#ROLLOVER_OTHER_TEXT").html(expressStoreInfo); WALMART.$('#ROLLOVER').wmBubble('position', {top:(y-85),left:x}); WALMART.$('#ROLLOVER').wmBubble('update', WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); }/*END S2S small format Changes */[ --- @relatedProductsContent ---]
We're Sorry, This Item is Out of Stock.
Loading...
Loading...
Loading...
- Recently Viewed Items
- Clear this list
- Recently Viewed Items
- You don't have any recently viewed items
- Top Searched Items in Computers
- ?Store pickup - Select option(s) above to see your pickup
choices.
- ?Free shipping to store Find
Getting the products you need is even easier with our free pickup options. Just give us your ZIP code, select a preferred store, and we\'ll be able to tell you what items are available to pick up today or can be shipped to your local store ? free.
- ?Free shipping to store and FedEx Office? locations
- Order now and this item will be ready for pickup within 5-10 business days
- We'll send you an email/text message when it's ready
- We'll hold your order for 14 days. If you don't make it to the store by the deadline, we'll cancel the order and refund your method of payment
- Please call your store for exact pickup hours
- Order now and this item will be ready for pickup within 5-10 business days
- We'll send you an email/text message when it's ready
- FedEx Office will hold your order for 5 days. If you don't make it to the store by the deadline, we'll cancel the order and refund your method of payment.
- Please call the FedEx Office location for exact pickup hours
- ?Free shipping to store with Site to Store
- Order now and this item will be ready for pickup within 4 hours (Orders after 6pm ready for store pickup tomorrow)
- We'll send you an email/text message when it's ready
- We'll hold your order for 7 days. If you don't make it to the store by the deadline, we'll cancel the order and refund your method of payment
- Please call your store for exact pickup hours
- ?
-
?Electronic delivery via email after purchase
??
This home free?item counts towards free shipping on a qualifying $45 orderShop for items labeled home free. When you spend $45 on Home Free items, you'll get free shipping on those items.
?Ship to home
??-?$45 order of Home Free items??-?97? shipping
??-?Free Shipping
- Electronic delivery via email after purchase
?Ship to home is not available for this product.
- Store information not available.
Online
Not Available at this time
In stock for:
Out of stock online Email me when in stock
Coming Soon
Preorder Now
Preorders Sold Out
Please check back on or after .
Please enter a valid 5-digit ZIP Code.
Please select your options before adding to cart
Please select your options before adding to cart
Please select your options before adding to cart
* This item is being discontinued. Availability is limited.
Out of stock for shipping to home.
Please enter a valid 5-digit ZIP Code.
- Store information not available.
Please visit your local store to see if this item is in stock.
Show this number 0088397490631?to a Walmart associate to find this item in your store.
Product availability, styles, promotions and prices may vary between stores and online. Product availability, styles, promotions and prices may vary between stores and online.
You'll be glad to know that even though the black Trax 17.3" notebook computer is relatively inexpensive, it never wavers on delivering the power you need to do more things at once, browse the Web, stay connected or treat yourself to light entertainment. The credit goes to the Intel processor. Raise the lid on this Toshiba laptop PC and open your eyes to more room than ever to multitask, watch movies or work with large spreadsheets. The extra-wide 17.3" diagonal TruBrite HD display on this black Trax 17.3" notebook computer offers incredible color and clarity. And it simply lets you do more at your desk. Tap into a wireless network at home or away with built-in Wi-Fi. Swap photos and files between friends or PCs with a Memory Card Reader. Hook in printers or scanners with two USB ports. Chat live with an onboard webcam. Plus, share work, load programs and easily do critical data back-ups with an integrated DVD SuperMulti optical drive.
Toshiba Black Trax 17.3" C675-S7308 Laptop PC:
Key Features and Benefits:
- Intel Core i3-2330M processor
2.20GHz, 3MB L3 Cache - 4GB DDR3 DRAM system memory (expandable to 8GB)
Gives you the ability to handle most power hungry applications and tons of multimedia work - 640GB hard drive
Store 426,000 photos, 182,000 songs or 336 hours of HD video and more - SuperMulti DVD Burner
Watch movies, and read and write CDs and DVDs in multiple formats - 10/100 Ethernet, 802.11b/g/n Wireless LAN
Connect to a broadband modem with wired Ethernet or wirelessly connect to a Wi-Fi signal or hotspot with the 802.11b/g/n connection built into your Toshiba laptop PC - 17.3" TrueBrite full-HD LED-backlit display
Mobile Intel HD Graphics with up to 1696MB shared graphics memory
Additional Features:
- Bluetooth 3.0 + HS
- Webcam with built-in microphone
- 8-in-1 memory card reader
- 2 x USB 2.0 ports, 1 x headphone jack, 1 x microphone jack, 1 x RJ-45 Ethernet port, 1 x RGB port
- 6-cell lithium-ion battery, up to 5 h 13 min battery life
Software:
- Genuine Microsoft Windows 7 Home Premium 64-Bit Edition (To learn more about the features of Windows 7, click here)
- Microsoft Office Starter 2010 includes reduced functionality versions of Microsoft Word and Excel with advertising. PowerPoint and Outlook are NOT included. Purchase Office 2010 today and get the most out of your new PC. (To learn more about the features of Office 2010, click here)
- Norton Internet Security 2012 (30-day subscription)
- Toshiba Recovery Disc Creator
Support and Warranty:
- 1-year standard limited warranty
- Restore discs are not included (unless specified by supplier). We recommend you use the installed software to create your own restore and backup DVD the first week you use the Toshiba laptop PC.
What's In The Box:
- Power cord
- 6-cell lithium-ion battery
- Quick Start Guide
To see the manufacturer's specifications for this Toshiba laptop PC, click here.
To see a list of our PC Accessories, click here.
Trade in your used computer and electronics for more cash to spend at Walmart. Good for your wallet and the environment - click here.
ENERGY STAR?
Products that are ENERGY STAR-qualified prevent greenhouse gas emissions by meeting strict energy efficiency guidelines set by the U.S. Environmental Protection Agency and the U.S. Department of Energy. The ENERGY STAR name and marks are registered marks owned by the U.S. government, as part of their energy efficiency and environmental activities.
Display | |
Display Type: | 17.3" TFT |
Widescreen Display: | Yes |
Max Resolution: | 1600 x 900 ( WXGA++ ) |
Processor | |
Multi-Core Technology: | Dual-Core |
Processor: | Intel Core i3 2330M / 2.2 GHz |
Chipset Type: | Mobile Intel HM65 Express |
Cache Memory | |
Type: | L3 cache |
Installed Size: | 3 MB |
Storage | |
Hard Drive: | 640 GB - Serial ATA-300 - 5400 rpm |
RAM | |
Installed Size: | 4 GB / 8 GB (max) |
Technology: | DDR3 SDRAM - 1333 MHz |
Configuration Features: | 1 x 2 GB |
Optical Storage | |
Type: | DVD?RW (?R DL) / DVD-RAM |
Read Speed: | 24x (CD) / 8x (DVD) |
Write Speed: | 24x (CD) / 8x (DVD?R) / 8x (DVD?R DL) |
Networking | |
Data Link Protocol: | Ethernet, Fast Ethernet, IEEE 802.11b, IEEE 802.11g, IEEE 802.11n, Bluetooth 3.0 HS |
Wireless LAN Supported: | Yes |
Audio | |
Audio Input: | Microphone |
Operating System / Software | |
OS Provided: | Microsoft Windows 7 Home Premium 64-bit Edition |
Software: | Adobe Acrobat Reader, Google Toolbar, Adobe Flash Player, Toshiba Supervisor Password Utility, Toshiba Bluetooth Stack, Skype, Toshiba Assist, Toshiba Recovery DiskCreator, Windows Live Essentials, NetZero Internet Service, Toshiba ReelTime, Toshiba Bulletin Board, Google Chrome, Toshiba Media Controller, Microsoft Silverlight, Toshiba Disc Creator, WildTangent Game Console, Toshiba Value Added Package, Windows Live Messenger, Face Recognition software, Windows Live Photo Gallery, Windows Live Mail, Windows Live Writer, Microsoft Windows Media Player 12, Toshiba Service Station, Toshiba Hardware Setup Utility, Toshiba Web Camera Application, Toshiba Online Backup (30 days trial), Windows Live Movie Maker, Microsoft Office 2010 Starter, Toshiba App Place, Toshiba Book Place, Toshiba HDD/SSD Alert, Toshiba Laptop Checkup, Toshiba Sleep Utility, Microsoft Internet Explorer 9.0, QuickBooks Online Banking, Toshiba Resolution+, Norton Internet Security 2012 (30 days trial) |
Battery | |
Technology: | 6-cell lithium ion |
Installed Qty: | 1 |
Capacity: | 48 Wh |
Run Time (Up To): | 5.2 hour(s) |
Product Dimensions | |
Width: | 16.3 in |
Height: | 1.5 in |
Depth: | 10.6 in |
Weight: | 6.2 lbs |
Color: | Trax texture in black, black keyboard |
Card Reader | |
Supported Flash Memory Cards: | SD Memory Card, Memory Stick, Memory Stick PRO, miniSD, SDHC Memory Card, microSD, SDXC Memory Card |
Miscellaneous | |
Features: | Security lock slot (cable lock sold separately) |
Compliant Standards: | RoHS |
Power | |
Voltage Required: | AC 120/230 V ( 50/60 Hz ) |
Manufacturer Warranty | |
Service & Support: | 1 year warranty |
More Information | |
Model No.: | C675-S7308 |
Shipping Weight (in pounds): | 8.3 |
Product in Inches (L x W x H): | 16.3?x?10.6?x?1.1 |
Walmart No.: | 007233551 |
Toshiba Black Trax 17.3" C675-S7308 Laptop PC with Intel Core i3-2330M Processor and Windows 7 Home Premium 9 11
Great Computer I love everything about this computer! My old laptop is a Toshiba, and it is 9.5 years old, and still going but much slower now. I was happy to find this computer at such a good price. 12/01/2011
Great Laptop I got this computer llast week and I love it, I have had dELL and i have had hp and I like tosbia the best.of all 3 of them... 12/05/2011
Toshiba Doesn't Stand Behind Their Products Purchased my Toshiba Laptop and the casing started coming apart near the rear hinges. It was only 8 months old at the time, still carrying warranty. They would not cover the product because they classify any physical issue like this as DAMAGE, which is not covered by their warranty. If the hinges quit working, they say Damage instead of PHYSICAL FAILURE. If the casing starts coming apart, Toshiba says damage, again not Physical Failure of the product. They imply that the customer has damaged the laptop through negligence or other, NOTHING is their fault. If the CD table just falls out of the laptop, it is YOUR fault. It is Physical Damage, not FAILURE of the product... 12/09/2011
Unacceptable sound I don't expect much from laptop speakers, but the sound on this machine is simply unacceptable. In addition to the very poor quality of the sound, on many videos it is impossible to increase the volume to a usable level. External speakers will solve the problem, of course, but they will also reduce the portability that is one of the features of any laptop. Unless you plan to use external speakers exclusively, this machine may be a disappointment. 12/12/2011
1-4 of 10 total reviews
A limited product warranty is included free for most items. With an optional Walmart Care Plan you can extend coverage up to 3 additional years. Walmart Care Plan Extended Warranties cover 100% of the cost for repair or replacement, including shipping charges for the exchange. See Details
We'll show you extended warranty options and pricing at checkout if applicable.
If you made your purchase in a Walmart store and would like to purchase a warranty Click HereThe following available options may be selected during checkout:
Gift Message: Add a personal note that we'll include with your gift.
Gift Receipt: When you add other gift options, we'll include a receipt that keeps the price a secret but makes it easy to exchange or return an item.
Enjoy Great Financing!
Make the most of your shopping experience with the Walmart Discover? or Walmart Credit Card.
Enjoy 6 months special financing on every purchase, every day
*Offer subject to credit approval
Learn More or Apply Now
No Payments + No Interest if Paid in Full in 6 Months!
Plus, New Bill Me Later? Customers:Get $20 off $100!
Enjoy no payments for 6 months. You'll have 6 months with no payments, and no interest if paid in full within 6 months on orders over $250. Otherwise, interest will be charged from the original date of purchase. Bill Me Later is the quick, easy, secure way to buy online without using your credit card. Simply select Bill Me Later at checkout. Subject to credit approval.
See Terms
Don't Miss a Single Rollback or Special Offer!
Subscribe to our RSS feeds to see the latest news and updated right in your RSS reader or RSS-enabled browser.ew61
/catalog/product.do, /catalog/fusionItem.do
/include/dynamic/tiles/templates/item/fusionItem.jsp
patrice o neal. joran van der sloot osteopathy osteopathy diphtheria diphtheria del rio
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.