Bookcases
Furniture
Special
64" Oak Corner Desk and Hutch
$3,099.00
This Oak Corner Desk features a 64" wide desk with a beautiful hutch cabinet for storage, and slideout keyboard shelf. Rush furniture is made of real wood, with a layer of real oak veneer for additional strength and beauty. Finished on all sides, Rush Furniture looks beautiful anywhere you put it.
Rush Furniture is proudly Made in the USA!
Dimensions (Desk + Hutch): H 65-1/2" x W 48" x D 48"
Widest Across Front: 64"
Corner Desk Features:
- Real Wood with Genuine Oak Veneer for strength and beauty.
- Convenient Hutch Cabinet for Storage
- Commercial Quality 3-Ply Construction
- 1" Thick Destop Worksurface
- Finished on all sides
- UV-Cured Durable Finish is Environmentally Friendly
- Natural Color
- Ready to assemble
- Weight: 277 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;
}
}




