Bookcases
Furniture
Special
Ergonomic Leather
$272.00
Ergonomic Leather Office Chair
Model#EL4350
- Rich Black Italian Leather
- Thick Padded Contour Seat and Back with Built-in Lumbar Support
- Pneumatic Seat Height Adjustment
- Ratchet Back Height Adjustment
- Multi Function Control
- Height and Width Adjustable Poly Urethane Padded Arms
- Heavy Duty Nylon Base with Dual Wheel Carpet Casters
DIMENSIONS:
Seat Size: 20.25" Wide x 19.5" Deep x 5" Thick
Back Size: 20.5" Wide x 26.25" High x 5" Thick
Max. Overall Size: 48.5" High x 27.25" Wide x 26" Deep
Arms Max Inside: 20.75"
Arms to Floor Min: 24.5"
Seat Height Min: 18.5"
Seat Travel: 4"
Weight: 63 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;
}
}




