Bueno.. tengo una pagina.. en ella uso javascript para abrir ventanas.. tengo un archivo .js externo, y en el esta lo siguente:
Código:
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
function comentarios(id){
window.open("comentar.php?postid=" + id,"-=-Alone Warrior=- || Comentarios","width=440,height=500,scrollbars=YES")
}
function comentar(id){
window.open("comentar.php?postid=" + id + "#comentar","-=-Alone Warrior=- || Comentarios","width=440,height=500,scrollbars=YES")
}
function openFanlist(){
window.open("fanlist.php","Fanlisting","width=310,height=250,scrollbars=YES")
}
function openLinkme(){
window.open("linkme.php","Link Me","width=200,height=300,scrollbars=YES")
}
En fin.. usando el Mozilla me abren todas las ventanas sin ningun problema.. pero usando el IE, solo me abre la que usa el openFanlist()... los otros no abren.. alguien tiene una idea de porq es esto?
de antemano, muchas gracias