Bookcases
Furniture
Special
Mesh Back and Seat
$189.00
Mesh Office Chair
Model# 5500
- Thick Padded Contour Seat and Air Grid Back with Built-in Lumbar Support
- One Touch Pneumatic Seat Height Adjustment
- 2-to-1 Synchro Tilt Control with Adjustable Tilt Tension
- Height Adjustable Angled Arms with Soft PU Pads
- Heavy Duty Angled Nylon Base with Over-sized Dual Wheel Carpet Casters
DIMENSIONS:
Seat Size: 20.5" Wide x 19.5" Deep x 3.5" Thick
Back Size: 20.5" Wide x 19" High x 1.25" Thick
Max. Overall Size: 42" High x 27" Wide x 26.5" Deep
Arms Max Inside: 18.75"
Arms to Floor Min: 25.5"
Seat Height Min: 19"
Seat Travel: 4.25"
Weight: 40 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;
}
}




