Bookcases
Furniture
Special
Glove Soft Leather
$259.00
Soft Leather Executive Chair
Model#DHL3081
- "Glove Soft" Saddle Brown Leather with Cocoa Frame
- Thick Padded Contour Seat and Back with Built-in Lumbar Support
- Padded loop Arms
- One Touch Pneumatic Seat height Adjustment
- Locking Tilt Control with Adjustable Tilt Tension
- Heavy Duty Coated Finish Base with Black End Caps and Dual Wheel Carpet Casters
DIMENSIONS:
Seat Size: 22.75" Wide x 22" Deep x 5.5" Thick
Back Size: 24.75" Wide x 30.75" High x 7.5" Thick
Max. Overall Size: 47.25" High x 26.75" Wide x 32.25" Deep
Arms Max Inside: 19.5"
Seat Travel: 3.5"
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;
}
}




