Para que entiendas el funcionamiento de estas capas te dejo un ejemplo usando solo css y html:
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//ES" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> * {
z-index: auto;
margin: 0px;
padding: 0px;
}
#bloqueador {
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 1000;
position: fixed;
background-color: #000;
opacity: 0.8;
filter: alpha(opacity=80);
}
#ventana {
width: 300px;
height:300px;
top:50px;
left: 358px;
z-index: 1001;
position: absolute;
background-color: #fff;
border: 2px solid #09f;
text-align: center;
overflow: hidden;
}
<object width="200" height="200"> <param name="movie" value="http://www.youtube.com/v/EtLjq3Ocs6w"></param> <embed src="http://www.youtube.com/v/EtLjq3Ocs6w" type="application/x-shockwave-flash" width="200" height="200" style="margin-top:50px"></embed>
Saludos