function carregar(texte,imatge) {
  var jpeg = new Image();
  jpeg.src = "../fotos/"+imatge+".jpg";
  X = 350;
  Y = 275;
  W = (screen.width - X) / 2;
  H = (screen.height - Y) / 2;
  nw = this.open("","","toolbar=no,directories=no,menubar=no,status=no,width="+X+",height="+Y+",left="+W+",top="+H);
  nw.document.write("<head><title>"+texte+"</title><link rel='stylesheet' type='text/css' href='../../public.css'></head>");
  nw.document.write("<body background='../../Fons.jpg'>");
  nw.document.write("<center><img src="+jpeg.src+"></img></font><br>");
  nw.document.write("<font face='Comic Sans MS' size='2'><a href='javascript:close()'><b>Tancar finestra</b></a></font></center></body>");
}

function obreFinestra(html,titol,ample,alt) {
  W = (screen.width - ample) / 2;
  H = (screen.height - alt) / 2;
  this.open(html,titol,"toolbar=no,directories=no,scrollbars=yes, menubar=no,status=no,width="+ample+",height="+alt+",left="+W+",top="+H);
}