28/12/2003, 17:40
|
| | | Fecha de Ingreso: septiembre-2003
Mensajes: 7
Antigüedad: 21 años, 4 meses Puntos: 0 | |
el codigo q uso es este:
Código:
<script language="javascript">
var win = null;
function nuevaVentana(pagina,nombre,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
estilo =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(pagina,nombre,estilo)
}
</script>
y despues en las imagenes:
Código:
<a onclick="nuevaVentana(this.href,'name','240','500','yes');return false" href="tat-1.jpg">
<img border="0" src="tat1.JPG" width="100" height="85"></a>
|