Bookcases
Furniture
Special
Mission Style Wine Cabinet
$349.00
63003SF-01-KD-U
The Santa Fe Wine Cabinet makes entertaining a breeze. It includes two shelves behind the doors. A flip-up top converts your cabinet into a Wine Bar for extra storage and work space. This cabinet's compact size is perfect for small areas. The hand-waxed finish accentuates the wood's natural characteristics.
Wine Cabinet Features:
- Handcrafted using SOLID PINE, with an MDF back
- Distressed Pine finish
- Hand rubbed using a natural mix of carnauba and beeswax
- Two fixed shelves behind the doors
- Finished with vintage hardware
- Flip-up top for extra storage and work space
- Converts to a Wine Bar
- Comes ready-to-assemble
- Weight: 56 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;
}
}




