Bookcases
Furniture
Special
Pillow Soft Leather
$359.00
Leather Conference Chair
Model#9333
- Top Grain Leather
- Pillow Top Seat and Back with Built-in Lumbar Support
- One Touch Pneumatic Seat Height Adjustment
- 2-to-1 Synchro Tilt Control with Adjustable Tilt Tension
- Gunmetal Finish Arms with PU Pads
- Gunmetal Finish Aluminum Base with Dual Wheel Carpet Casters
DIMENSIONS:
Seat Size: 22" Wide x 20" Deep x 5.25" Thick
Back Size: 21" Wide x 24" High x 5" Thick
Max. Overall Size: 45" High x 27.5" Wide x 28.25" Deep
Arms Max Inside: 19.5"
Arms to Floor Min: 28"
Seat Height Min: 18.75"
Seat Travel: 4.75"
Weight: 56 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;
}
}




