Bookcases
Furniture
Special
60" Black Oak Bookcase
$339.00
- Constructed using High Quality Solid Oak with Oak Veneers
- Fluted Side Columns
- Crown Molding with full return
- 3 adjustable shelves with Fluted fronts
- Scalloped front bottom molding
- Dowel and Cam-Lock construction
- Eco-friendly Low VOC (Volatile organic Compounds) Laquered finish
- Color: Matte Black
- Weight: 75 Lbs
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;
}
}




