prueba con esto
Código HTML:
Ver original<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<script type="text/javascript"> window.onload = function(){
var cl = document.getElementById('cl');
cl.onclick = function(){
var fondo = document.getElementById('superior');
var ventana = document.getElementById('ventana');
document.getElementsByTagName('body')[0].removeChild(fondo);
document.getElementsByTagName('body')[0].removeChild(ventana);
}
}
div.cont{
width: 700px;
height: 600px;
border: solid 1px black;
background: yellow;
margin: 10px auto 10px auto;
}
#superior{
position: absolute;
z-index: 1000;
background: #000;
filter:alpha(opacity='70');
opacity:0.7;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
#ventana{
position: absolute;
width: 400px;
height: 400px;
top: 30%;
left: 30%;
z-index: 1001;
background: #fff;
}
div.titulo{
height: 30px;
background: #8800ff;
text-align: right;
}
div.titulo span{
cursor: pointer;
}
<div id="contenido" class="cont">