function mostrarFecha(){
	var fecha=new Date();
	var diames=fecha.getDate();
	var mes=fecha.getMonth() + 1 ;
	var ano=fecha.getFullYear();

	var textomes = new Array (12);
	textomes[1]="Enero";
	textomes[2]="Febrero";
	textomes[3]="Marzo";
	textomes[4]="Abril";
	textomes[5]="Mayo";
	textomes[6]="Junio";
	textomes[7]="Julio";
	textomes[8]="Agosto";
	textomes[9]="Septiembre";
	textomes[10]="Octubre";
	textomes[11]="Noviembre";
	textomes[12]="Diciembre";

	document.write(diames + " de " + textomes[mes] + " de " + ano);
}

function actualitzaMidaMarcaBlanca(numPixels){
	document.getElementById("marcaBlanca").style.height = numPixels+"px";
}

