Bookcases
Furniture
Special
3-Piece Oak Veneer Bookcase
$1,579.00
The pieces of this 3-Piece Oak Veneer Bookcase Set are designed to fit next to one another, and can also be placed separately. Proudly made in the USA!
Individual Dimensions:
Tower: H 85-1/2" x W 12" x D 12"
Bookcase: H 85-1/2" x W 24" x D 12"
Library: H 85-1/2" x W 46-7/8 x D 12"
BOOKCASE FEATURES:
- Ideal for Home or Business
- Adjustable Shelves
- Commercial Quality, Real Wood with Genuine Oak Veneer
- Strong 3-Ply Construction
- All metal Fasteners and shelf pins
- UV-Cured Durable Finish is Environmentally Friendly
- Easy to Assemble
- Natural Color
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;
}
}




