Bookcases
Furniture
Special
Ergonomic Leather
$299.00
- Thick Padded Contour Leather Seat and Back with Built-in Lumbar Support
- Ratchet Back Height Adjustment
- Width Adjustable and Ratchet Height Adjustable Arms with Soft PU Pads
- One Touch Pneumatic Seat Height Adjustment
- Multi Function Control with Forward Tilt and Adjustable Tilt Tension
- Seat Slider Adjustment
- Black Top Grain Leather
- Heavy Duty Titanium Finish Base with Dual Wheel Carpet Casters
DIMENSIONS:
Seat Size: 20.5" Wide x 19.25" Deep x 3" Thick
Back Size: 20.75" Wide x 29" High x 5" Thick
Max. Overall Size: 49" High x 27.75" Wide x 28.25" Deep
Arms Max Inside: 19"
Arms to Floor Min: 26"
Arms to Seat Min: 6.75"
Seat Height Min: 19"
Seat Travel: 3.5"
Weight: 62 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;
}
}




