Bookcases
Furniture
Special
Executive Leather
$269.00
High Back Executive Chair
Model#EX6840
- Thick Padded Contour Seat and Back with Built-in Lumbar Support
- Rich Black Top Grain Leather
- 2-to-1 Synchro Mid Pivot Knee Tilt Control
- "C" Arms
- Heavy Duty Nylon Base with Dual Wheel Carpet Casters
DIMENSIONS:
Seat Size: 22" Wide x 21.25" Deep x 6.5" Thick
Back Size: 23.5" Wide x 27" High x 6" Thick
Max. Overall Size: 50.25" High x 26" Wide x 30.75" Deep
Arms to Floor Min: 27.75"
Seat Travel: 2.75"
Weight: 69 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;
}
}




