function AbrirFoto(fotografia,x,y)
{
var vleft = (screen.width-x)/2;
var vtop = (screen.height-y)/2;

ventana=open("","","toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=no,width="+x+",height="+y+",top="+vtop+",left="+vleft);
    ventana.document.write("<HTML><HEAD><TITLE>Cambrils - Maupas</TITLE></HEAD>");
    ventana.document.write("<BODY topmargin=\"0\" leftmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">");
    ventana.document.write("<img src=fotos_cambrils_grandes/"+fotografia+".jpg>");
    ventana.document.write("</BODY></HTML>");
    return; 
}

