Bookcases
Furniture
Special
Deluxe Leather
$314.00
Leather Office Chair with Headrest
Model#29008
- Thick Padded Contour Seat and Back with Built-In Lumbar Support
- 2-Way Adjustable Headrest
- One Touch Pneumatic Seat Height Adjustment
- 2-to-1 Synchro Tilt Control with Adjustable Tilt Tension and Tilt Lock
- Top Grain Leather
- Height Adjustable Angled Arms with PU Pads
- Gunmetal Finish Aluminum Base with Oversized Dual Wheel Casters
DIMENSIONS:
Seat Size: 19.5" Wide x 20" Deep x 4" Thick
Back Size: 21" Wide x 22" High x 2.5" Thick
Max. Overall Size: 56" High x 27.75" Wide x 29" Deep
Arms Max Inside: 19.5"
Arms to Floor Min: 25"
Seat Height Min: 18.5"
Seat Travel: 4.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;
}
}




