buenas, he creado una funcin praa mi web, perocomo laquiero usar en muchas paginas la he creado en un archivo aparte. si la pongo en la misma pagina me funciona, pero si la pongo en un archivo diferente no.
no se lo que estoy haciendo mal.
este es el codigo de mi archivo js:
// JavaScript Document<script>
function openVFStretchScroll(page, endWidth, endHeight, name)
{
windowprops="width="+endWidth+",height="+endHeight +",left=" + ((screen.endWidth) / 2) + ",top=" + ((screen.endHeight) / 2) + ",scrollbars=0,location=0";
w = window.open(page,name,windowprops);
if (w != null)
w.focus();
}
este el codigo de la pagina html:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="../../../../estilos/letra.css" rel="stylesheet" type="text/css">
<link href="../../../../estilos/titulos.css" rel="stylesheet" type="text/css">
<link href="../../../../estilos/letra2.css" rel="stylesheet" type="text/css">
<link href="../../../../estilos/titulos2.css" rel="stylesheet" type="text/css">
<link href="../../../../estilos/letra_iconos.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/javascript" src="../../../../js/funciones.js"></script>
</head>
<body background="../../../../imagenes/fondo.jpg">
<div id="Layer4" style="position:absolute; left:563px; top:233px; width:100px; height:86px; z-index:6"><a href="javascript:openVFStretchScroll('mapa.htm',50 4,600,'mapa')" ><img src="../../../../imagenes/mapas/thumbs/museoborja.jpg" alt="Haz click para abrir ventana desde imagen" width="80" height="95" border="0"></a></div>
a ver si me podeis ayudar.
muchas gracias