Abraham,
I recently found your tutorial on pop-up overlays and it is exactly what we wanted to do when we update our website. I have gotten everything to work perfectly except that the opacity is still affecting my pop-up. I tried to read all the posts on this issue before posting another one myself, by I cannot find anything that references ‘wmode’ which seemed to help solve the issue for others.
Here is my code if it helps:
function clicker(wind){
var thediv=document.getElementById(‘displaybox’);
if(thediv.style.display == “none”){
thediv.style.display = “”;
var myWins=new Array();
myWins[1]=”
“;
myWins[2]=”Close Video“;
myWins[3]=”Close Video“;
thediv.innerHTML = myWins[wind];
}else{
thediv.style.display = “none”;
thediv.innerHTML = ”;
}
return false;
}
Thanks for this info, it has gotten me 90% of the way there very quickly!
– Chris