
24/05/2004, 00:17
|
 | | | Fecha de Ingreso: abril-2004 Ubicación: Villabona Cyti
Mensajes: 252
Antigüedad: 21 años Puntos: 0 | |
<%
foto= request("cod")
if foto ="" then
foto= "no_disponible.gif"
end if
%>
<html>
<head>
<title></title>
<script language="JavaScript">
function tamanyo()
{
ancho = document.foto.width + 10;
alto = document.foto.height + 50;
window.resizeTo(ancho,alto);
}
</script>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="tamanyo()">
<table width="100%" border="0" cellpadding="0" cellspacing="0" id="tabla">
<tr>
<td colspan="2" align="center"><img name="foto" border="0" src="<%=foto%>">
</td>
</tr>
<tr>
<td align="center" valign="middle"></td>
<td align="right" valign="middle">
<table border="0" cellpadding="2" cellspacing="0">
<tr>
<td><a href="javascript:window.close()"><img src="ico_cerrar_i.gif" hspace="4" border="0">Cerrar</a></td>
<td></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Aki teneis un ejemplo, aunke hay infinitas posibilidades |