Bookcases
Furniture
Special
Mesh and Leather
$393.00
Leather & Mesh Office Chair
Model#2663
- Black Leather Seat
- Thick Padded Contour Seat and Matrex Back with Adjustable Lumbar Support
- One Touch Pneumatic Seat Height Adjustment
- 2-to-1 Synchro Tilt Control with Adjustable Tilt Tension
- Height Adjustable arms with PU Pads
- Platinum Finish Aluminum Base with Dual Wheel Carpet Casters
DIMENSIONS:
Seat Size: 22" Wide x 19.5" Deep x 4.5" Thick
Back Size: 21" Wide x 23.5" High
Max. Overall Size: 44.25" High x 27.75" Wide x 27" Deep
Arms Max Inside: 20.25"
Arms to Floor Min: 26"
Seat Height Min: 18.25"
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;
}
}




