Bookcases
Furniture
Special
Cherry Finish
$239.00
High Back Leather-Wood Executive Chair
Model#WD5360
- Top Grain Black Leather
- Contour Seat and Back with Built-in Lumbar Support
- One Touch Pneumatic Seat Height Adjustment
- Locking Tilt Control with Adjustable Tilt Tension
- Padded Wood Loop Arms
- Cherry Finish
- Wood Covered Steel Base with Dual Wheel Carpet Casters
DIMENSIONS:
Seat Size: 21" Wide x 21" Deep x 4.5" Thick
Back Size: 21" Wide x 28" High x 5" Thick
Max. Overall Size: 46" High x 26.5" Wide x 30.5" Deep
Arms Max Inside: 20.5"
Arms to Floor Min: 26.5"
Seat Height Min: 18.5"
Seat Travel: 3.5"
Weight: 49 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;
}
}




