Cita:
Iniciado por mdk Tengo el siguiente codigo, pero me da error de script, alguien sabe donde esta el fallo? :(
//////////////////// VARIABLES //////////////////////
var VHeight = 300;
var VWidth = 700;
/////////////////// FUNCIONES ///////////////////////
function ventana() {
Obj = document.getElementById("ventana");
Obj.style.visibility = "visible";
Obj.style.left = (document.body.clientHeight / 2) - (VWidth / 2);
Obj.style.top = (document.body.clientWidth / 2) - (VHeight / 2);
Obj.style.width = VWidth;
Obj.style.height = VHeight;
FObj = document.getElementById("fondo");
FObj.style.visibility = "visible";
FObj.style.width = document.body.scrollWidth;
FObj.style.height = document.body.scrollHeight;
}
function sombra() {
SbRight = document.getElementById("SbRight");
SbRight.style.visibility = "visible";
SbRight.style.left = (document.body.clientHeight / 2) + (VWidth / 2);
SbRight.style.top = (document.body.clientWidth / 2) - (VHeight / 2) + 15;
SbRight.style.width = 15;
SbRight.style.height = (VHeight / 2) + 15;
}
La verdad que no conozco demasiado de javascript, pero me parece que la propiedad .style.visibility deberia tner un valor de true si es como en otro lenguajes, si no es eso lo siento.
Saludos.