Bookcases
Furniture
Special
Mission Style Glass Door Cabinet
$399.00
Classic Mission styling makes the dark brown finish on this Mission Style Cabinet ideal for use as a TV stand or console table. Two glass inset doors open to reveal a large storage shelf which is perfect for storing your media, literature, or favorite collectibles. Decorative details add to the cabinet's turn-of-the-century appeal.
Pine Cabinet Features:
- Constructed from Solid Pine, and MDF with genuine Pine Veneers
- Two swing-out tempered glass doors
- Large storage shelf behind the doors
- Decorative faux through mortise and tenon details
- Dark Brown Finish
- Comes ready-to-assemble
- Weight: 38-1/2Lbs
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;
}
}




