Bookcases
Furniture
Special
SAFCO 60" Bookcase in "Cherry"
$365.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 Cherry 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
- 4 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: 86 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;
}
}




