Bookcases
Furniture
Special
Glove Soft Leather
$267.00
Red Leather Executive Chair
Model#DHL3221
- Glove Soft Leather in Wine Red with Pewter Frame
- Contoured Mid-Back & Seat with Built-in Lumbar Support
- Padded Coated-Finish Arms
- Pneumatic Seat Height Adjustment
- Infinite Locking Mid Pivot Knee Tilt Control with Adjustable Tilt Tension
- Coated Finish Base with Dual Wheel Carpet Casters
DIMENSIONS:
Seat Size: 21.5" Wide x 19" Deep x 5" Thick
Back Size: 22" Wide x 23.5" High x 5" Thick
Max. Overall Size: 41.75" High x 25.5" Wide x 27.5" Deep
Arms Max Inside: 19.5"
Arms to Floor Min: 27.25"
Seat Height Min: 19.5"
Seat Travel: 2.25"
Weight: 52 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;
}
}




