Bookcases
Furniture
Special
Executive Leather
$219.00
Red Leather Executive Chair
Model#EX5161
- Burgundy Red Top Grain Leather
- Contour Seat and Back with Built-in Lumbar Support
- Pneumatic Seat Height Adjustment
- Locking Tilt Control with Adjustable Tilt Tension
- PP Loop Arms
- Heavy Duty Nylon Base with Dual Wheel Carpet Casters
DIMENSIONS:
Seat Size: 21.5" Wide x 22" Deep x 5" Thick
Back Size: 21.5" Wide x 22.5" High x 5" Thick
Max. Overall Size: 42" High x 26.5" Wide x 31.5" Deep
Arms Max Inside: 21.5"
Seat Height Min: 19.5"
Seat Travel: 2.25"
Weight: 50 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;
}
}




