Bookcases
Furniture
Special
Deluxe Leather
$259.00
Leather Office Guest Chair
Model#3905
- Thick Padded Contour Seat and Back with Built-in Lumbar Support
- Top Grain Leather
- Cantilever Arms with Soft PU Pads
- Heavy Duty Platinum Finish Metal Base
DIMENSIONS:
Seat Size: 21.5" Wide x 21" Deep x 4.5" Thick
Back Size: 21.5" Wide x 23" High x 2" Thick
Max. Overall Size: 40.5" High x 28.25" Wide x 28.5" Deep
Arms Max Inside: 20.5"
Arms to Floor Min: 26.75"
Seat Height Min: 19"
Weight: 48 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;
}
}




