Bookcases
Furniture
Special
Modern Executive Oak Desk
$1,991.00
Desk Features:
- Real Wood with Genuine Oak Veneer for strength and beauty.
- Commercial Quality 3-Ply Construction
- Desk is Finished on all sides
- 1" Thick Desktop
- 2 Drawer Lateral files on casters
- 3 Drawer files on casters
- Convenient Center Drawer for pencils, pens, supplies, etc.
- UV-Cured Durable Finish is Environmentally Friendly
- All metal Fasteners and Shelf Pins
- Easy to Assemble
- Natural Color
- Weight: 70 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;
}
}




