Bookcases
Furniture
Special
84" Large Oak Bookcase
$385.00
This large oak bookcase with its understated elegance lines will enhance any room in your home or office. Bookcase contains solid oak with real oak veneers for added strength and beauty. Bookcases of this quality usually cost hundreds more, but we ship directly from the factory so you save!
- Constructed of High Quality Solid Oak with Oak Veneers
- Crown Molding with full return
- Scalloped front top molding
- 6 adjustable shelves with Fluted fronts
- Fluted Side Columns
- Dowel and Cam-Lock construction
- Eco-friendly Low VOC (Volatile organic Compounds) Laquered finish
- Color: Chestnut
- Weight: 58 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;
}
}




