Bookcases
Furniture
Special
Gun Storage Display Cabinet
$299.00
AMERICAN OAK GUN CABINET with WILDLIFE ART
- Handcrafted from solid American red oak and red oak veneers
- Beautiful, durable, stain-resistant polyurethane finish
- Strong dowel and European cam lock construction
- Protective felt-lined holders for rifle barrels and butts
- Key locking door with tempered safety glass
- Decorated with an elaborate etched-look wildlife design
- Locking compartment below
- Large enough to hold 5 long guns, plus more
- Antiqued brass hardware, mostly pre-installed for easy, quick assembly
- 2-person assembly with Phillips screwdriver and mallet
- Weight: 88 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;
}
}




