Bookcases
Furniture
Special
Oak Veneer Bookcase
$411.00
This commercial-quality, ready-to-assemble bookcase is proudly made in the USA. Rush bookcases are designed for use in both the business environment, and today's home office as well.
- Commercial Quality, Real Wood Oak Veneer
- 3-Ply Construction with 3/4" Thick Panels
- Ideal for Home or Business
- Adjustable Shelves
- All metal Fasteners and shelf pins
- Environmentally Friendly, UV Cured Durable Finish
- Color: Natural
- Weight: 65 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;
}
}




