Bookcases
Furniture
Special
Oak 2-Drawer File Cabinet
$443.00
This locking Oak File Cabinet comes with convenient, easy-gliding casters. It's finished on all sides so it looks great anywhere. Proudly Made in the USA!
Dimensions: H 28" x W 16" x D 19-1/2"
File Cabinet Features:
- Handcrafted using Solid Wood and Genuine Oak Veneer
- Commercial Quality 3-Ply Construction
- Locking top drawer
- Strong 5/8" Thick Panels
- Easy gliding castors
- Modular freestanding design can be arranged as desired
- UV Cured Durable Finish is Environmentally Friendly
- Natural Color
- Weight: 79 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;
}
}




