function irPorFecha(modRewrite, aaaa, mm)
{
	// Si no hay aņo coger el aņo actual
	if (aaaa == 0)
		aaaa = new Date().getFullYear();
	// Si no hay mes coger el mes actual
	if (mm == 0)
		mm = new Date().getMonth() + 1;
	// Destino del enlace
	var rutaEnlace = '';
	if (modRewrite)
		rutaEnlace = 'noticias/' + aaaa + '/' + mm;
	else
		rutaEnlace = 'noticias.php?mm=' + mm + '&aaaa=' + aaaa;
	// Fin
	location.href = rutaEnlace;
}
