Bookcases
Furniture
Special
Ergonomic Leather
$249.00
Ergonomic Red Leather Chair
Model#EL4300
- Rich Italian Leather in Red Burgundy
- Thick Padded Contour Seat and Back with Built-in Lumbar Support
- Pneumatic Seat Height Adjustment
- Back Height Adjustment
- Dual Function Control
- Height and Width Adjustable 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: 49" High x 27.25" Wide x 27.5" Deep
Arms Max Inside: 20"
Arms to Floor Min: 25.25"
Seat Height Min: 19"
Seat Travel: 4"
Weight: 61 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;
}
}




