Bookcases
Furniture
Special
Mesh High Back
$199.00
- Thick Padded Contour Mesh Seat and Black Mesh Back with Built-in Lumbar Support
- One Touch Pneumatic Seat Height Adjustment
- 3 Position Locking 2-to-1 Synchro Tilt Control
- Width Adjustable and Ratchet Height Adjustable Arms with Soft PU Pads
- Heavy Duty Titanium Finish Base with Dual Wheel Carpet Casters
DIMENSIONS:
Seat Size: 20.5" Wide x 19" Deep x 3.25" Thick
Back Size: 19.5" Wide x 27.75" High
Max. Overall Size: 47" High x 26.75" Wide x 24" Deep
Arms Max Inside: 19.5"
Arms to Floor Min: 27.5"
Arms to Seat Min: 7.75"
Seat Height Min: 17.75"
Seat Travel: 3.5"
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;
}
}




