Bookcases
Furniture
Special
Steel Credenza
$465.00
Steel Credenza in "Beige-Oak"
Model#"PCRDP-oak" D 24" x H 29"
Available in Two Color Combos ~ Free Shipping!
*** PRICES DRASTICALLY REDUCED! ***
Steel Credenza Features:
- Solid steel construction with attractive powder coated textured finish for easy care
- Durable melamine laminate tops with radius edges
- Box and file drawers glide easily on steel ball bearing slides
- Pedestals lock 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
- 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;
}
}




