
fecha3=new Date();
diames=fecha3.getDate();
diasemana=fecha3.getDay();
mes=fecha3.getMonth() +1 ;
ano=fecha3.getFullYear();


function saberSemana(){
fecha=new Date(ano,0,1);
primerDiaDelAno=fecha.getDay();
fecha2=new Date(ano,mes,(diames+7-primerDiaDelAno));
tiempopasado=fecha2-fecha;
semanas=Math.floor(tiempopasado/1000/60/60/24/7);
if(semanas==0){semanas=52}
semanas = semanas-4;
parent.central.location = ano+"_"+semanas+".html";
}



