' + 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 */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 0002724281825?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.
Key Features and Benefits:
- AMD Athlon II Dual-Core P360 processor
2.30GHz, 1MB Cache - 4GB DDR3 SDRAM system memory (expandable to 8GB)
Gives you the power to handle most power-hungry applications and tons of multimedia work - 500GB SATA hard drive
Store 333,000 photos, 142,000 songs or 263 hours of HD video and more - SuperMulti DVD Burner
Watch movies, and read and write CDs and DVDs in multiple formats - 10baseT/100baseTX/1000baseT 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 Sony black 15.5" laptop PC - 15.5" widescreen LED display
AMD Mobility Radeon HD 4250 Graphics
- Built-in MOTION EYE webcam and microphone
- 3-in-1 memory card reader
- 4 x USB 2.0 ports, 1 x VGA port, 1 x HDMI output, 1 x headphone jack, 1 x microphone input, 1 x RJ-45 Ethernet port, 1 x DC-in
- Standard capacity lithium-ion battery
- 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 or Outlook are NOT included. Purchase Office 2010 today and get the most out of your new VAIO notebook computer. (To learn more about the features of Office 2010, click here)
- Norton Internet Security 2011 (30-day trial offer)
- Backup and Restore options built into Windows allows you to create safety copies of your most important personal files, so you're always prepared for the worst
- 90-day warranty
- Restore discs are no longer included with PCs. We recommend you use the installed software to create your own restore and backup DVD the first week you use the Sony black 15.5" laptop PC.
- Power cord
- Standard capacity lithium-ion battery
- Quick Start Guide
To see the manufacturer's specifications for this Sony black 15.5" 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.
Display | |
Display Type: | 15.5" TFT |
Widescreen Display: | Yes |
Max Resolution: | 1366 x 768 ( WXGA ) |
Processor | |
Multi-Core Technology: | Dual-Core |
Processor: | AMD Athlon II P360 / 2.3 GHz |
Cache Memory | |
Installed Size: | 1 MB |
Storage | |
Hard Drive: | 500 GB |
RAM | |
Installed Size: | 4 GB / 8 GB (max) |
Technology: | DDR3 SDRAM - 1066 MHz |
Configuration Features: | 2 x 2 GB |
Optical Storage | |
Type: | DVD?RW (?R DL) / DVD-RAM - integrated |
Networking | |
Data Link Protocol: | Ethernet, Fast Ethernet, Gigabit Ethernet, IEEE 802.11b, IEEE 802.11g, IEEE 802.11n |
Wireless LAN Supported: | Yes |
Audio | |
Audio Input: | Microphone |
Operating System / Software | |
OS Provided: | Microsoft Windows 7 Home Premium 64-bit Edition |
Software: | VAIO Care, VAIO Media Gallery, Picture Motion Browser VAIO Edition, Microsoft Office 2010 Starter, Norton Internet Security 2011 (30 days trial) |
Battery | |
Technology: | Lithium ion |
Installed Qty: | 1 |
Run Time (Up To): | 3 hour(s) |
Product Dimensions | |
Width: | 14.6 in |
Height: | 1.5 in |
Depth: | 9.8 in |
Weight: | 6 lbs |
Card Reader | |
Supported Flash Memory Cards: | SD Memory Card, Memory Stick |
Miscellaneous | |
Compliant Standards: | RoHS |
Manufacturer Warranty | |
Service & Support: | 1 year warranty |
More Information | |
Model No.: | VPC-EE41FX/BJ |
Shipping Weight (in pounds): | 8.1 |
Product in Inches (L x W x H): | 14.56?x?9.78?x?1.47 |
Walmart No.: | 007210871 |
Sony Refurbished Black 15.5" VAIO E41FX Laptop PC with AMD Athlon II Dual-Core P360 Processor and Windows 7 Home Premium 14 15
Good laptop. I bought this computer after out HP's cd drive usb ports camera and sound quit working and it kept crashing. I didnt want another HP. When I went to walmart I seen they had this one on the shelf for 598$. Thought it seemed good so bought it. It was only 445$ for some reason? Everything works great on it. Im very happy with it and would recommend it. The only problem I have is the keys are a little bigger and spaced different so it takes some getting used to typing. But other then that 10 out of 10 02/20/2011
Perfect affordable Reliability I got This laptop Dec. 24th, 2010 for Christmas. Wanted to use it for awhile before I wrote a review. Sony puts out one heck of a laptop. The Screen brings everything to life !! Keypad was Not hard at all to get used to when I've used a desktop from day 1. It's fast, affordable, comes loaded with google chrome, Sony Vaio Center, and their support? Very good. Tried it "Just to see." I would highly recommend this laptop series to anyone looking for a dedicated brand name that holds up every inch to its name. I have a friend who has the same laptop and he is going on 5 yrs with his. Still running strong !! Only Problem? Comes with Sony Assist 6.2. It needs the Sony assist 6.3. But? I use Norton, it comes with Performance. The Sony assist tends to have some errors but? Run the Norton performance and with both together? I got this highly optimized and do it 2-3 x's a day. Depends on usage. BUY IT ... You wont' regret it. 03/02/2011
Wonderful Electronic Purchase I needed a new computer and after much searching I found this one and loved it! I actually received it on Valentine's Day so that made it much better.I did have the hardest getting the battery in because the picture didn't show it well enough. That, and I was so excited to finally have one. 03/04/2011
Awesome buy! I bought this laptop after dealing with my beat up Dell for 2 years. I have read in reviews that the fan is too loud or that the sound isnt really great. I completely disagree. I bought this product in the store. (the last one too). I took it home and the setup was really simple. I also purchased the warranty for 100 bucks, which will come in handy should anything ever happen to it. I really love this laptop. The graphics are so clear. Honestly I have no con to report. So if your comparing between this and a Dell, go with Sony. 04/20/2011
1-4 of 15 total reviews
Gift options are not available for this item.
Enjoy Great Financing!
Make the most of your shopping experience with the Walmart Discover? or Walmart Credit Card.
Open a Walmart Credit Card, Spend $100 Today and Get $20 Back*
*Offer subject to credit approval
Learn More or Apply Now
No Payments + No Interest if Paid in Full in 6 Months!
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.nw384
/catalog/product.do, /catalog/fusionItem.do
/include/dynamic/tiles/templates/item/fusionItem.jsp
jenny mccarthy december 21 2012 nfl draft 2012 rose bowl 2012 nfl playoff picture nfl playoff picture ryan seacrest
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.