Bookcases
Furniture
Special
SAFCO 84" Bookcase in "Walnut"
$479.00
The clean traditional design of this bookcase fits into any office decor. Veneers give bookcases their strength! This bookcase features durable wood veneers in a rich Walnut finish. Top-notch right angles and earth-wise sophistication stand out in the Square-Edge Veneer Bookcase.
- Constructed of wood particle board with strong and beautiful wood veneers
- One-piece matching veneer back panel
- 7 adjustable shelves
- Custom-craft finsh 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: 117 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;
}
}




