Bookcases
Furniture
Special
Mesh and Leather
$257.00
Leather & Mesh Guest Chair
Model#2405
- Professional Matrex Back Guest Chair with Italian Leather Seat
- Thick Padded Contour Seat
- Black Italian Split Leather
- Matrex Back with Adjustable Arms with PU Pads
- Heavy Duty Metal Base
DIMENSIONS:
Seat Size: 20" Wide x 19.5" Deep x 3" Thick
Back Size: 22.5" Wide x 24" High
Max. Overall Size: 41" High x 27.25" Wide x 25.5" Deep
Arms Max Inside: 19"
Arms to Floor Min: 25.75"
Seat Height Min: 19"
Weight: 43 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;
}
}




