Bookcases
Furniture
Special
Cedar Chest
$327.00
Storage Chest Features:
- Handcrafted using solid American red oak and genuine American red oak veneer
- Inside lined with aromatic cedar
- Most hardware pre-installed for quick and east assembly
- Beautiful polyurethane finish is environmentally friendly and resists stains for years of service
- Sturdy dowel and European cam-lock construction for extra strength
- Full length brass piano hinge on back and top and 2 slow close safety hinges inside
- Weight: 90lbs
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;
}
}




