Bookcases
Furniture
Special
Oval Tables in Blossom Cherry
$659.00
Foot Model#ZAPF-O-BC
W 4' x H 29"
Conference Table Features
- High pressure melamine laminate workface in "Blossom Cherry".
- Attractive rounded "Bull Nose" vinyl edging.
- Powder coated sturdy steel bases.
- Center modesty panels and metal to metal connection for added durability.
- Ships ready for easy assembly.
- 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;
}
}




