Bookcases
Furniture
Special
Pillow Top Leather
$239.00
Pillow Top Red Leather Chair
Model#DHL9931
- Pillow Top Seat and Back with Built-in Lumbar Support
- Top Grain "Glove Soft" Leather in Wine Red
- Height Adjustable Padded Waterfall Arms
- One Touch Pneumatic Seat height Adjustment
- 2-to-1 Synchro Tilt Control with Adjustable Tilt Tension
- Heat-Duty Coated Finish Base in "Pewter"
- Base has Black End Caps and Dual Wheel Carpet Casters
DIMENSIONS:
Seat Size: 21.5" Wide x 19" Deep x 4" Thick
Back Size: 21.5" Wide x 27.5" High x 3.75" Thick
Max. Overall Size: 46.75" High x 26.5" Wide x 29" Deep
Arms Max Inside: 19"
Arms to Floor Min: 26.75"
Seat Height Min: 17.25"
Seat Travel: 4.25"
Weight: 43 lbs
function IsNumeric(sText,id) {
var ValidChars = "0123456789.";
var IsNumber=true;
var Char;
if(sText=='' || sText==null){
alert('Enter Quantity')
document.getElementById(id).value = '';
return false;
}
for (i = 0; i < sText.length && IsNumber == true; i++) {
Char = sText.charAt(i);
if (ValidChars.indexOf(Char) == -1) {
IsNumber = false;
}
}
if(IsNumber==false){
document.getElementById(id).value = '';
return false;
}else{
return true;
}
}




