Bookcases
Furniture
Special
Large Maple Bookcase
$539.00
- Can be placed side by side to make a library wall
- A true focal point for any room will dramatically display books, collectables, knickknacks, pictures, etc.
- 10 adjustable wood shelves 11-7⁄8" deep.
- Handcrafted using SOLID MAPLE WOOD and REAL MAPLE WOOD VENEER
- Most hardware pre-installed for quick and easy assembly
- Beautiful polyurethane finish is environmentally friendly and resists stains for years of service
- Dowel and European Cam-lock construction for extra strength
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;
}
}




