Bookcases
Furniture
Special
48" Oak Bookcase
$269.00
Oak Bookcase #HP3048
ITEM IS SOLD-OUT/DISCONTINUED!
Dimensions: H 48" x W 30-1/2" x D 12-7/8"
- Handcrafted using SOLID AMERICAN RED OAK AND GENUINE AMERICAN RED OAK 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 and quick and easy assembly
- Adjustable shelves are 12" deep
- Weight: 70 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;
}
}




