Bookcases
Furniture
Special
Oak Computer Desk and Hutch
$599.00
Oak Computer Desk-Hutch #CP480
ITEM IS SOLD-OUT/DISCONTINUED!
Hutch Dimensions: H 30" x W 52" x D 10"
Desk Dimensions: H 30" x W 54" x D 26 3/8"
Overall Dimensions: H 60" x W 54" x D 26-3/8"
- Handcrafted using SOLID AMERICAN RED OAK AND GENUINE AMERICAN RED OAK VENEER
- Most hardware pre-installed for quick and easy assembly
- Beautiful polyurethane finish is environmentally friendly and resists stains for years of service
- Dowel and European Cam-lock construction for extra strength
Hutch Features:
- Two adjustable shelves
- Accommodates up to 19" monitor
- Ample storage for books, folders, manuals, etc.
Desk Features:
- Full 54" wide work surface
- Large slide out keyboard & mouse shelf
- One file drawer with full extension ball-bearing glides, accommodates both letter or legal size files
- Two utility drawers for extra storage
- Adjustable shelf in C.P.U. storage area
- Weight: 232 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;
}
}




