Bookcases
Furniture
Special
Oak Entertainment Center
$695.00
This Oak Entertainment Center has an adjustable TV opening and separate side units with adjustable shelves.
Dimensions:
Center Unit: H 49" x W 31-1/8" x D 16"
TV Opening expands from 29-1/2"W x 15-1/8"D x 28"H (as shown) to 32"H with upper shelf (adjustable) removed.
Each Side Unit: H 28" x W 19-1/4" x D 15-1/8"
Side units are not attached- they can be placed anywhere!
Entertainment Center Features:
- Handcrafted using Real Wood and Genuine Oak Veneer
- Commercial Quality 3-Ply Construction
- TV Shelf, Top and Bottom are Strong, 1" Thick Panels
- Separate Side Units have Adjustable Shelves
- Finished on all sides, so pieces look good from every angle
- 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;
}
}




