Bookcases
Furniture
Special
Library Executive Double Pedestal Computer Desk
$699.00
- Handcrafted using solid American red oak and genuine American red oak veneer
- 2 utility drawers for extra storage, and a center drawer with a drop down drawer front that doubles as a slide out keyboard shelf or a pencil drawer
- Computer desk includes a CPU trolley with 2 regular and 2 locking castors for easy access to CPU
- Desktop has a large work surface and is over 62" wide
- 3 file drawers feature full extension ball-bearing drawer glides and accommodates both letter and legal size file folders
- Deluxe drawer handles add a distinctive accent to any decor
- Most hardware pre-installed for quick and easy assembly
- Beautiful polyurethane finish is environmentally friendly and resists stains for years of service
- Sturdy dowel and European cam-lock construction for extra strength
- Weight: 238lbs
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;
}
}




