Bookcases
Furniture
Special
Oak 2-Drawer File Cabinet
$776.00
This Oak Lateral File Cabinet comes with convenient, easy-gliding casters. It's finished on all sides so it looks great anywhere. Proudly Made in the USA!
- Handcrafted using Solid Wood and Genuine Oak Veneer
- Commercial Quality 3-Ply Construction
- Strong 5/8" Thick Panels
- Ideal for Home or Business
- 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;
}
}






