Hola! Tengo un problema que no sé como solucionarlo. Tengo una página donde quiero que muestre una tabla cuando la resolución sea mayor de 800. Dentro de esta tabla tengo un enlace a un documento a través de un comportamiento "abrir ventana del explorador", pero no me funciona. ¿Podrían decirme qué estoy haciendo mal? GRACIAS! Este es el código:
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
</head>
<body>
<script>
resolucion= window.screen.availWidth;
if (resolucion>800){
document.write ("<table width='100%' border='0' cellpadding='0' cellspacing='0'>");
document.write ("<tr>");
document.write ("<td width='100%' valign='middle' background='images2/fondo.jpg'><p> </p>");
document.write (" <span class='Estilo1' onClick='MM_openBrWindow('textolegal.php','','scro llbars=yes,width=400,height=400')'>Texto1 </span></td>");
document.write ("<td width='170'><img src='images2/subida.jpg' width='170' height='127'></td>");
document.write (" <td width='397'><img src='images2/derecho.jpg' width='397' height='127' border='0' usemap='#Map'></td>");
document.write (" </tr>");
document.write ("</table>");
document.write ("<p> </p>");
document.write ("<em onClick='MM_openBrWindow('texto1.php','','scrollba rs=yes width=400,height=400')'>");
document.write ("</em>");
document.write ("<p> </p><p> </p>");
document.write ("<map name='Map'>");
document.write ("<area shape='rect' coords='15,32,186,104' href='http://www.acadesa.com'>");
document.write ("<area shape='rect' coords='214,35,374,113' href='http://www.movistar.es'>");
document.write ("</map>");
}else if (resolucion<=800){
document.write ("aaaaaaaaaaaa");
}
</script>