Honeywell HW-628 Twin Window Fan
Thursday, June 26th, 2008
Honeywell HW-628 Twin Window Fan
|
| List Price: | $49.99 |
| Price: | $39.99 & eligible for FREE Super Saver Shipping on orders over $25. Details |
Availability: Usually ships in 24 hours
Ships from and sold by Amazon.com
4 new or used available from $34.99
Average customer review: ![]()
Product Description
The Honeywell Enviracaire HW628 Twindow Twin Window Fan can be adjusted to promote fluid air circulation for comfort and freshness in your room on even the most squalid days of the year. Built-in adjustable side screens Uses 110-120 Volts AC UL approved
addHandlers();
function addHandlers() { if (goVariationSet == null || AJSEventHandler == null || VariationSetEvent == null) { return; }
goVariationSet.registerEvent(VariationSetEvent.DIMENSION_HOVER, new AJSEventHandler(null, notAvailableHover_handle)); goVariationSet.registerEvent(VariationSetEvent.DIMENSION_SELECTED, new AJSEventHandler(updateDimensionText_init, updateDimensionText_handle)); goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED, new AJSEventHandler(updatePrice_init, updatePrice_handle)); goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED, new AJSEventHandler(updateAvail_init, updateAvail_handle)); goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED, new AJSEventHandler(null, updateOfferId_handle)); goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED, new AJSEventHandler(updateBuyButton_init, updateBuyButton_handle)); goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED, new AJSEventHandler(updateImage_init, updateImage_handle));
var buybtn = document.getElementById('buybutton'); var form = document.buybox;
if (buybtn != null && form != null) { if (document.body.addEventListener) { buybtn.addEventListener('mouseover', buyButtonMouseover, false); buybtn.addEventListener('mouseout', buyButtonMouseout, false); form.addEventListener('submit', cartSubmit, false); } else { buybtn.attachEvent('onmouseover', buyButtonMouseover); buybtn.attachEvent('onmouseout', buyButtonMouseout); form.attachEvent('onsubmit', cartSubmit); } }
}
function updateDimensionText_init() { var spans = document.getElementsByTagName("span"); for (var i = 0; i < spans.length; i++) { if (spans[i].className == “dimensionSelectorLabel”) { spans[i].innerHTML = AJSStrings.get(”choose one”); } } }
function updateDimensionText_handle(event) { if (!event.type || event.type != VariationSetEvent.DIMENSION_SELECTED) return;
var dn = event.dimensionName; var element = document.getElementById(’dimensionSelectorLabel_’ + dn); if (element) { var value = event.dimensionValue; if (value == null) { value = AJSStrings.get(”choose one”); } element.innerHTML = value; } }
function notAvailableHover_handle(event) { if (!event.type || event.type != VariationSetEvent.DIMENSION_HOVER || goVariationSet == null) return;
var div = document.getElementById(’variationNotAvailable’); if (div == null) return;
var dn = event.dimensionName; var dv = event.dimensionValue;
if (dn == null && dv == null) { div.style.display = ‘none’; } else if (!goVariationSet.isDimensionValueAvailable(dn, dv)) { var dims = goVariationSet.getAllConstraints(); dims[dn] = dv; var out = AJSStrings.get(”Not available in”) + ‘<br\/>’; for (var d in dims) { out += AJSStrings.getFallback(d) + ‘: <span class=”notAvailHighlight”>’ + dims[d] + “<\/span><br\/>”; } var img = document.getElementById(’detailProductImage’); var width = (img == null) ? 180 : img.width + 10;
div.style.width = width; div.innerHTML = out; div.style.display = ‘block’; } }
function updatePrice_init() { var offerPrice = document.getElementById(’detailOfferPrice’); var listPrice = document.getElementById(’detailListPrice’); if (offerPrice == null) return;
this.defaultPrice = offerPrice.innerHTML; if (listPrice != null) { this.defaultListPrice = listPrice.innerHTML; } }
function updatePrice_handle(event) { if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return;
var offerPrice = document.getElementById(’detailOfferPrice’); var listPrice = document.getElementById(’detailListPrice’); if (offerPrice == null) return;
var variation = event.variation; if (variation != null) { if (variation.attrs.Price) { offerPrice.innerHTML = variation.attrs.Price; } if (listPrice != null && variation.attrs.ListPrice && (variation.attrs.ListPriceAmount > variation.attrs.PriceAmount)) { listPrice.innerHTML = variation.attrs.ListPrice; } } else { offerPrice.innerHTML = this.defaultPrice; if (listPrice != null) { listPrice.innerHTML = this.defaultListPrice; } } }
function updateAvail_init() { var element = document.getElementById(’dimSelectAvailability’); if (element == null) return;
this.defaultAvailability = element.innerHTML; }
function updateAvail_handle(event) { if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return;
var element = document.getElementById(’dimSelectAvailability’); if (element == null) return;
var variation = event.variation; if (variation != null) { var text = “”; if (variation.attrs.Availability) { text = variation.attrs.Availability; } if (variation.attrs.MerchantName) { if (text != “” && !text.match(/\.\s*$/)) { text += ‘.’; } text += ” ” + AJSStrings.get(’Ships from sold by’) + ” ” + variation.attrs.MerchantName; } element.innerHTML = text; } else if (this.defaultAvailability != null) { element.innerHTML = this.defaultAvailability; } }
function updateOfferId_handle(event) { if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return;
var form = document.buybox; if (form == null || form.dynASIN == null || form.dynOfferId == null) return;
var variation = event.variation; if (variation != null && variation.attrs.OfferListingId != null && variation.attrs.Asin != null) { form.dynASIN.value = variation.attrs.Asin; form.dynOfferId.value = variation.attrs.OfferListingId; } else { form.dynASIN.value = ”; form.dynOfferId.value = ”; } }
function updateBuyButton_init() { var element = document.getElementById(’buybutton’); if (element == null) return; element.style.cursor = “not-allowed”; }
function updateBuyButton_handle(event) { if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return; var element = document.getElementById(’buybutton’); if (element == null) return;
if (event.variation == null) { element.style.cursor = “not-allowed”; } else { element.style.cursor = “pointer”; } }
function buyButtonMouseover(event) { if (goVariationSet == null) return;
if (goVariationSet.selectedVariation == null) { var div = document.getElementById(’chooseVariationBFCartAdd’); if (div != null) { div.style.display = ‘block’; } } }
function buyButtonMouseout(event) { var target = (event.target) ? event.target : event.srcElement; var div = document.getElementById(’chooseVariationBFCartAdd’); if (div != null) { div.style.display = ‘none’; } }
function cartSubmit(event) { if (goVariationSet == null || goVariationSet.selectedVariation != null) { return true; } else { if (event.preventDefault) { event.preventDefault(); } return false; } }
function updateImage_init() { var img = document.getElementById(’detailProductImage’); if (img) { this.defaultImage = img.src; }
var link = document.getElementById(’imageViewerLink’); if (link) { this.defaultHref = link.href; // replace current asin with a generic url for subsitutions this.baseHref = link.href.replace(/\/images\/\w{10}/, “/images/%ASIN%”); } }
function updateImage_handle(event) { if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return; var img = document.getElementById(’detailProductImage’); var link = document.getElementById(’imageViewerLink’); var variation = event.variation;
var imgsrc, href;
if (variation && variation.attrs.ImageURL) { imgsrc = variation.attrs.ImageURL; href = this.baseHref.replace(/%ASIN%/, variation.attrs.Asin); } else { imgsrc = this.defaultImage; href = this.defaultHref; }
if (img) img.src = imgsrc; if (link) link.href = href; }
Product Details
- Amazon Sales Rank: #5 in Kitchen & Housewares
- Color: Alabaster
- Brand: Honeywell
- Model: HW-628
- Released on: 2006-01-18
- Dimensions: 12.60″ h x 6.50″ w x 24.09″ l, 8.25 pounds
Features
- Adjustable grilles direct breezes where needed
- 3 speed motor for high, medium and low operation options
- Fits virtually all window types with built-in adjustable slides
- Ultra convenient removable grills for easy cleaning
- Built in adjustable side screens to keep dust and bugs out; Rain resistant motor for safe use in windows
Customer Reviews
Does it work?![]()
Don’t drop it, don’t get it wet. It does work. They aren’t all that powerful. I don’t run them on high and they are saving me a lot of money as compared to using an air conditioner. If the outside temp is higher than the inside I turn it off or blow out with that fan. If the outside is cooler I blow in. It does cool off a lot at night where I live partly due to a creek so this is working. Ymmv.
The queitist fan I’ve seen![]()
The fan is very well built and sturdy, plus it is light so it’s easy to carry around and move between windows. It is also very quiet, so I don’t have to jack on the volume on my TV during summer nights.
Very good unit![]()
Works well for both getting the hot air out of your room and for pulling in the cool air. I have a similar 2-fan model by Feature Comforts, but the fan on this Honeywell is a bit stronger. Just be careful about dropping it — mine took a tumble out of a window and some of the plastic parts inside broke off. It’s still operates as well as ever, but I have to be careful that the broken pieces don’t get caught in the fan.
