Bookcases
Furniture
Special
Deluxe Leather
$319.00
Leather Office Chair
Model#3901
- Thick Padded Contour Seat and Back with Built-in Lumbar Support
- One Touch Pneumatic Seat Height Adjustment
- 2-to-1 Synchro Tilt Control with Adjustable Tilt Tension and Tilt Lock
- Top Grain Leather
- Height-Adjustable Arms with PU Pads
- Heavy Duty Platinum Finish Base with Oversized Dual Wheel Carpet Casters
DIMENSIONS:
Seat Size: 20" Wide x 20.75" Deep x 4.5" Thick
Back Size: 22.25" Wide x 23.5" High x 3.5" Thick
Max. Overall Size: 45.25" High x 28.25" Wide x 29.75" Deep
Arms to Floor Min: 25.5"
Seat Height Min: 18.75"
Seat Height Max: 23"
Seat Travel: 4.25"
Weight: 48 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;
}
}




