Bookcases
Furniture
Special
Mission Style Pine Bookcase
$399.00
- Handcrafted using SOLID PINE, and MDF with GENUINE PINE VENEER
- Four sturdy shelves provide ample storage
- A perfect balance of style and function
- Decorative faux through mortise and tenon details
- Color: Dark Brown
- Comes ready-to-assemble
- Weight: 80-1/2 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;
}
}




