Bookcases
Furniture
Special
1525 WLC
$431.00
The curved frame, refined lines, and stunning finish of the 6-shelf Radius-Edge Veneer Bookcase will enhance any room. Veneers give bookcases their strength! This bookcase features durable wood veneers in a rich Walnut finish.
- Constructed of High Quality durable oak 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: 105 lbs.
- Color: Walnut
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;
}
}




