02/04/2011, 12:10
|
| | | Fecha de Ingreso: agosto-2008 Ubicación: Buenos Aires - Argentina
Mensajes: 1.417
Antigüedad: 16 años, 3 meses Puntos: 128 | |
Respuesta: ¿Banner o anuncio en todas las paginas de un dominio? Creo que esto podria yudarte:
<html>
<head>
<script language="JavaScript">
function Abrir_ventana (pagina) {
var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, width=508, height=365, top=85, left=140";
window.open(pagina,"",opciones);
}
</script>
</head>
<body onload="Abrir_ventana('popup.html')">
</body>
</html>
Luego creas el archivo popup.html con el contenido del banner o anuncio y listo.
Saludos. |