Bookcases
Furniture
Special
60" Black Oak Bookcase
$355.00
Mid-size black bookcase in with detailed moldings will give an elegant look to your room. Bookcase contains solid oak with real oak veneers for added strength and beauty. Bookcases of this quality usually cost much more, but we ship directly from the factory so you save!
- Constructed using High Quality Solid Oak with Oak Veneers
- Fluted Side Columns
- Crown Molding with full return
- 4 adjustable shelves with Fluted fronts
- Scalloped front bottom molding
- Dowel and Cam-Lock construction
- Eco-friendly Low VOC (Volatile organic Compounds) Laquered finish
- Color: Matte Black
- Weight: 88 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;
}
}




