Bookcases
Furniture
Special
Oak Entertainment Center
$348.00
Rush Furniture is proudly made in the USA!
This Oak Entertainment Center has a convenient storage cabinet underneath.
- Ideal for Home or Business
- Handcrafted using Real Wood and Genuine Oak Veneer
- Commercial Quality 3-Ply Construction
- Strong, 1" Thick TV Shelf
- All Metal Fasteners and Shelf Pins
- UV-Cured Durable Finish is Environmentally Friendly
- Easy to Assemble
- Natural Color
- Weight: 75 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;
}
}




