Bookcases
Furniture
Special
Leather Executive
$255.00
- Contour Seat and Back with Built-in Lumbar Support
- Pneumatic Seat Height Adjustment
- Locking Mid Pivot Knee Tilt Control with Adjustable Tilt Tension
- Top Grain Black Leather
- Padded Chrome Arms
- Chroms Base with Dual Wheel Carpet Casters
DIMENSIONS:
Seat Size: 20" Wide x 20" Deep x 3.5" Thick
Back Size: 20" Wide x 21" High x 3.5" Thick
Max. Overall Size: 37.75" High x 25.75" Wide x 27.25" Deep
Arms Max Inside: 21"
Arms to Floor Min: 25.25"
Seat Height Min: 16.25"
Seat Travel: 2.75"
Weight: 56 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;
}
}




