var i=0;
function carga() {
	i++;
	if(i<2){
		setTimeout('carga()',10000); 
	}else{
		window.location="flash/index.html";
		
		
	}
}

function abrirVentana(){
var alto_screen=window.screen.height;
var alto=(alto_screen-308)/2;
var ancho_screen=window.screen.width;
var ancho=(ancho_screen-450)/2;
ventana=window.open("navidad.html", "ventana", "toolbar=no, scrollbars=1, menubar=no, location=no, status=no, width=450, height=308, top="+ alto +", left="+ ancho +", resizable=0");
}
function cerrarNavidad(){
window.close(navidad.html);
}