Mira a ver si te sirve esto: Código PHP:
<html>
<head>
<script>
//----------- NO TOCAR ----------------
function personaje(nombre,mote,nacimiento,lugar,pais,foto){
this.nombre=nombre;
this.mote=mote;
this.nacimiento=nacimiento;
this.lugar=lugar;
this.pais=pais;
this.foto=foto;
}
var miembro=new Array();
//------------ya PUEDES TOCAR
//Propiedades de la ventana
fondo="black";
anchoFoto=50;
altoFoto=100;
//Fuente de la ventana
tipo="verdana";
tamano="12";
color="white"; //también pouede ponerse en código hexadecimal (#ffffff;)
tono="normal"; //puede ser normal, bold, italic...
//tamaño de la ventana
ancho="300";
alto="120";
x=(screen.width-ancho)/2;
y=(screen.height-alto)/2;
//lista de miembros
//sintaxis: miembro[n]=new personaje(Nombre,Mote,Fecha de nacimiento,lugar de residencia,Pais,ruta de la foto);
miembro[0]=new personaje("Pepito","El Pepe","11/1/1972","Madrid","España","img/pepe.jpg");
miembro[1]=new personaje("Walter","Matafeos","1/21/1982","Valencia","España","http://www.fotos.com/foto.gif");
//Pon todos los que creas conveniente
function mostrar(numero){
persona=miembro[numero];
ficha=window. open('about :blank','ficha','width='+ancho+',height='+alto+',top='+y+',left='+x);
ficha.document.writeln("<html><head>");
ficha.document.writeln("<title>ficha de "+persona.mote+"</title>");
ficha.document.writeln("<style>");
ficha.document.writeln("td{");
ficha.document.writeln("color:"+color+";");
ficha.document.writeln("font:"+tono+" "+tamano+"px/"+tamano+"px "+tipo+";");
ficha.document.writeln("}");
ficha.document.writeln("</style>");
ficha.document.writeln("</head><body bgcolor='"+fondo+"' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
ficha.document.writeln("<table>");
ficha.document.writeln("<tr>");
ficha.document.writeln("<td rowspan='5'><img width='"+anchoFoto+"' height='"+altoFoto+"' src='"+persona.foto+"'></td><td>Nombre</td><td>"+persona.nombre+"</td>");
ficha.document.writeln("</tr>");
ficha.document.writeln("<tr>");
ficha.document.writeln("<td>Mote:</td><td>"+persona.mote+"</td>");
ficha.document.writeln("</tr>");
ficha.document.writeln("<tr>");
ficha.document.writeln("<td>Fecha de Nacimiento:</td><td>"+persona.fecha+"</td>");
ficha.document.writeln("</tr>");
ficha.document.writeln("<tr>");
ficha.document.writeln("<td>Lugar de Residencia:</td><td>"+persona.nacimiento+"</td>");
ficha.document.writeln("</tr>");
ficha.document.writeln("<tr>");
ficha.document.writeln("<td>Pais:</td><td>"+persona.pais+"</td>");
ficha.document.writeln("</tr>");
ficha.document.writeln("</table>");
ficha.document.writeln("</body></HTML>");
}
</script>
</head>
<body>
<script>
for(a=0;a<miembro.length;a++){
document.write("<A HREF='javascript:mostrar("+a+");'>"+miembro[a].nombre+"</A><br><br>");
}
</script>
</body>
</html>
El tamaño de la foto la defines con altoFoto y anchoFoto y ahora pones la ruta de la foto al final de todos los demás datos.
Dime que tal...
Un saludo!
PD.- No entiendo lo que quieres decir con lo de las cosas que pusiste... puedes explicarte un poco más? Muchas gracias!