lo deje asi
Código PHP:
function AF(IDfoto){
var winl = (screen.width - 520) / 2;
var wint = (screen.height - 520) / 2;
agrandarFoto = window.open('','AF','width=520,height=520,top='+wint+',left='+winl+',scrollbars=yes,resizable=0');
agrandarFoto.document.open();
agrandarFoto.document.write('<html><title>AF</title><body bgcolor=#FFFFFF leftmargin=0 topmargin=0 marginheight=0 marginwidth=0 scroll=no onBlur=self.close()>');
agrandarFoto.document.write('<table width=100% height=100% border=0 cellpadding=0 cellspacing=0>');
agrandarFoto.document.write(' <tr>');
agrandarFoto.document.write(' <td align=center><img src=/ps/micuenta/imagen.asp?f=' + IDfoto + '&t=2 /></td>');
agrandarFoto.document.write(' </tr>');
agrandarFoto.document.write('</table>');
agrandarFoto.document.write('</body></html>');
agrandarFoto.document.close();
agrandarFoto.focus();
return true
}
pero no funciona tampoco y me imprime "true" en pantalla
serà porque lo estoy llamando desde un <a href="AF(100);"> ??