Bookcases
Furniture
Special
Executive Leather
$146.00
High Back Leather Executive Chair
Model#EX1128
- Contour Seat and High Back with Built-in Lumbar Support
- Pneumatic Seat Height Adjustment
- Locking Tilt Control with Adjustable Tilt Tension
- PP Loop Arms
- Deluxe Coated Black Leather
- Heavy Duty Nylon Base with Dual Wheel Carpet Casters
DIMENSIONS:
Seat Size: 21" Wide x 20" Deep x 4.5" Thick
Back Size: 20.5" Wide x 28.5" High x 4" Thick
Max. Overall Size: 48.5" High x 25.5" Wide x 28" Deep
Seat Height Min: 17.5"
Seat Travel: 3.5"
Weight: 47 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;
}
}




