Bookcases
Furniture
Special
Gun Cabinets
Gun Storage Display Cabinet
AMERICAN OAK GUN CABINET with WILDLIFE ART
Gun Display Cabinet #GC700
Dimensions: H 67" x W 25-3/4" x D 14-3/4"
$299.00
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;
}
}



