Bookcases
Furniture
Special
Oak Entertainment Center
$599.00
Large Screen Entertainment Center
- Handcrafted using Solid American Red Oak and Genuine American Red Oak Veneer
- Wide VCR shelf adjusts to the width and height of most wide screen TVs
- Ample storage below for tapes other media and knick-knacks etc, including convenient storage behind doors
- Most hardware pre-installed for quick, easy assembly
- Beautiful polyurethane finish is environmentally friendly and resists stains for years of service
- Dowel and European Cam-lock construction for extra strength and quick and easy assembly
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;
}
}




