Bookcases
Furniture
Special
Steel Desk and Flipper Doors
$759.00
Steel Desk in "Beige" with "Oak" Workface
Model#"PDRSP-FD-Oak" D 30" x H 65"
Available in Two Color Combos ~ Free Shipping!
*** PRICES DRASTICALLY REDUCED! ***
Steel Desk Features:
- Solid steel construction with attractive powder coated textured finish for easy care
- Durable melamine laminate tops with radius edges
- Pedestal attaches to left or right of desk
- Box and file drawers glide easily on steel ball bearing slides
- Pedestal locks for your conveniance and security
- Desk top and both legs include two 2" grommets for hiding unsightly wires and cables
- Full leg end modesty panel gives a neat, clean appearance
- Hutch has flip-up doors and a fabric tackboard
- Minor assembly required
- Assembly hardware and instructions are included
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;
}
}




