Bookcases
Furniture
Special
Vinyl Task Chair
$146.00
Vinyl Office Chair
Model#SC813V
- Thick Padded Seat and Back with Built-in Lumbar Support
- Pneumatic Seat Height Adjustment
- Adjustable Soft Padded Arms
- Adjustable Tilt Tension
- Black Vinyl
- Chrome Finish Base with Dual Wheel Carpet Casters
- Note: This chair has a weight limit of 200 lbs.
DIMENSIONS:
Seat Size: 21.25" Wide x 19.75" Deep x 3" Thick
Back Size: 20.25" Wide x 21" High x 3" Thick
Max. Overall Size: 42.25" High x 28" Wide x 24.5" Deep
Arms to Floor Min: 24.75"
Seat Travel: 6.5"
Weight: 32 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;
}
}




