Bookcases
Furniture
Special
L-Shape Glass Desk
$168.00
This glass computer desk offers a sleek modern design crafted with durable steel and thick tempered safety glass. The L-shape desk provides a corner wedge for more space, and the design creates a look that is both attractive and simple. Flexible configuration options allow you to mount the keyboard tray on either side of the desk. Also included are a universal autonomous Computer stand and a sliding keyboard tray. This glass L-shaped desk compliments any room and is a great addition to any home office.
Black Glass Desk Features:
- Stylish modern design
- Polished and beveled tempered safety glass
- Contemporary chrome mounts securely attach the glass to the frame
- Durable steel frame with a black finish
- Space saving L-Shape design
- Universal autonomous Computer stand
- Sliding keyboard tray
- All glass is 6mm thick
- Ships Ready-to-Assemble with all necessary tools
- Assembly instructions plus toll-free number and online support available
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;
}
}




