Buenas,
Tengo un pequeño problema con window.open en Explorer, pues le digo que sea fullscreen y sin scrollbars, y cuando abre la página, muestra la barra de scroll lateral.
El código es el siguiente:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>:: Bienvenido al website del Hospital de Móstoles ::</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="javascript">
function abrirVentana()
{
var opciones=("toolbar=no, location=no, directories=no, status=no, channelmode=no, menubar=no , scroll=no, resizable=no, fullscreen=yes");
window.open("http://www.babel.es","nombredeventana", opciones);
}
</script>
</head>
<body background="fondoindex.gif" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onload="javascript:abrirVentana();">
<table width="100%" height="100%" border="0">
<tr>
<td align="center" valign="middle"><img src="entrada.jpg" width="400" height="200" border="0" usemap="#Map"></td>
</tr>
</table>
<map name="Map">
<area shape="rect" coords="53,100,201,125" href="home.html" target="_blank">
<area shape="circle" coords="66,149,15" href="http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash&Lang=S panish&P5_Language=Spanish" target="_blank">
<area shape="rect" coords="216,176,355,191" href="http://www.pixelandpixel.com" target="_blank">
</map>
</body>
</html>
Gracias
Manu