// Funcions per obra.htm

function CargarFoto(img, ancho, alto){
  derecha=(screen.width-ancho)/2;
  arriba=(screen.height-alto)/2;
  string="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,titlebar=0,resizable=0,width="+ancho+",height="+alto+",left="+derecha+",top="+arriba+"";
  fin=window.open(img,"",string);
}
function Abrir_ventana (pagina) {
var opciones="toolbar=0,location=0,directories=no,status=no,menubar=0,scrollbars=0,resizable=0,width=450,height=350,top=50,left=10";
window.open(pagina,"",opciones);
}
