// JavaScript Document
window.onload=function() {
var elDiv = document.getElementById('Container');
var losFondos = new Array('IMG_1.jpg','IMG_2.jpg','IMG_3.jpg','IMG_4.jpg','IMG_5.jpg','IMG_6.jpg','IMG_7.jpg','IMG_8.jpg','IMG_9.jpg','IMG_10.jpg');
var indice = Math.floor(Math.random()*losFondos.length);
//alert(indice);
elDiv.style.backgroundImage = 'url("imgs/apartados/'+ losFondos [indice] +'")';
      }

function muestraReloj() {
if (!document.layers && !document.all && !document.getElementById) return;
var fechacompleta = new Date();
var horas = fechacompleta.getHours();
var minutos = fechacompleta.getMinutes();
var segundos = fechacompleta.getSeconds();
var mt = "AM";
if (horas > 24) {
 mt = "PM";
horas = horas - 12;
}
if (horas == 0) horas = 12;
if (minutos <= 9) minutos = "0" + minutos;
if (segundos <= 9) segundos = "0" + segundos;
cadenareloj = horas + ":" + minutos + ":" + segundos;
if (document.layers) {
document.layers.spanreloj.document.write(cadenareloj);
document.layers.spanreloj.document.close();
}
else if (document.all) spanreloj.innerHTML = cadenareloj;
else if (document.getElementById) document.getElementById("spanreloj").innerHTML = cadenareloj;
setTimeout("muestraReloj()", 1000);
}

function inicio(w,h,foto) {
	// w es la anchura de la imagen
	// h es la altura de la imagen
	// foto el nombre del htm donde esta la foto
        var ancho,alto,w2,h2;
		w2=w/2
		h2=h/2
		ancho=screen.width/2-w2;
		alto=screen.height/2-h2;
		
		 window.open(""+foto+"","","width="+w+",height="+h+",left="+ancho+",top="+alto+"");
		  }

