Bookcases
Furniture
Special
Pillow Top Leather
$194.00
Red Leather Executive Chair
Model#EX9381
- Rich Burgandy Red Leather Extra-Thick Padding
- Pillow Top Seat and Back with Built-in Lumbar Support
- One Touch Pneumatic Seat Height Adjustment
- 2-to-1 Synchro Control with Adjustable Tilt Tension
- Padded Height Adjustable Waterfall Arms
- Heavy Duty Nylon Base with Dual Wheel Carpet Casters
DIMENSIONS:
Seat Size: 22.75" Wide x 20" Deep x 4.5" Thick
Back Size: 22" Wide x 24" High x 5" Thick
Max. Overall Size: 42.5" High x 28" Wide x 28.75" Deep
Arms Max Inside: 20"
Arms to Floor Min: 25.25"
Seat Height Min: 17.25"
Seat Travel: 3.75"
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;
}
}




