Bookcases
Furniture
Special
Tall-Narrow 6-Shelf Bookcase
$229.00
The clean traditional design of this Tall-Narrow "Baby" bookcase is a perfect addition to your workspace. Sturdy construction is made to last. Veneers give bookcases their strength. This bookcase features durable wood veneers in a rich Cherry finish.
- Constructed of wood particle board with strong and beautiful wood veneers
- One-piece matching veneer back panel
- 5 adjustable shelves
- Custom-craft finish with shelf-lock fasteners for easy assembly
- 3/4" shelves and sides add strength and stability
- Shelves hold up to 100 Lbs!
- Ships ready for easy assembly
- Weight: 54 lbs.
- Color: Cherry
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;
}
}




