Bookcases
Furniture
Special
Vinyl Task Chair
$127.00
Vinyl Office Chair
Model#SC532V
- Thick Padded Seat and Back with Built-in Lumbar Support
- Pneumatic Seat Height Adjustment
- Loop 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: 19.75" Wide x 17.25" Deep x 3" Thick
Back Size: 18" Wide x 17.75" High x 3" Thick
Max. Overall Size: 40.25" High x 24" Wide x 22" Deep
Arms to Floor Min: 25.75"
Seat Travel: 4.25"
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;
}
}




