Bookcases
Furniture
Special
36" Mission Oak Bookcase
$279.00
This Mission Style oak bookcase with its beautiful details 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 much more, but we ship directly from the factory so you save!
- Constructed of High Quality Solid Oak with Oak Veneers
- Classic Slat-Sided Design
- 2 adjustable shelves
- Dowel and Cam-Lock construction
- Eco-friendly Low VOC (Volatile organic Compounds) Laquered finish
- Color: Medium Mission
- Weight: 50 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;
}
}




